Skip to content

Commit cb0cd3b

Browse files
appleboypazams
authored andcommitted
Add dep project roadmap link. (#10)
* Add dep project roadmap link. * Update README.md
1 parent 373f1a7 commit cb0cd3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ A Javascript module can be any valid Javascript type. By exporting an object, it
135135
Another difference is the consumption of other internal components within your project. In Javascript, since each file is (usually) a module, then each of the files that were decoupled from the current file must be imported. On the other hand, in Go, all files within the same package can have access to each other since there is no file scope.
136136

137137
## Management
138+
138139
For Javascript development, NPM is the de-facto package manager for NodeJS, and may also be used for client side projects. Bower is also a popular for client side projects.
139140

140141
The `go get` tool will only get you as far as getting a dependency latest master code. This will not suffice if you need accurate dependency management with pinned versions. The Go community came up with several package managers, here's a partial list:
@@ -146,8 +147,7 @@ The `go get` tool will only get you as far as getting a dependency latest master
146147
- https://github.com/Masterminds/glide
147148
- https://github.com/mattn/gom
148149

149-
Go has acknowledged the need for a dependency management tool by starting its own project: https://github.com/golang/dep .
150-
As of the time of writing, it is still in Alpha phase, and not part of official Go toolchain yet. Watch that project for status updates!
150+
Go has acknowledged the need for a dependency management tool by starting its own project: [dep](https://github.com/golang/dep). As of the time of writing, it is still in Alpha phase, and not part of official Go toolchain yet. Watch that project [roadmap](https://github.com/golang/dep/wiki/Roadmap) for status updates!
151151

152152
# Patterns
153153
TBD

0 commit comments

Comments
 (0)