Skip to content

First pass at getting started #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions getting-started.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#Getting Started

###Installing Node

The simplest way to install node is from [nodejs.org][nodejs.org].

You can also install node via a [system package manager][node-via-package-manager].

For the adventurous you can use a version manager designed just for node such as [nvm][nvm] or [n][n].

###What do I do now?

This really depends on how comfortable you feel.

If you have never done javascript before you might want to first check out [javaScript For Cats][for-cats].

If you are comfortable with js but have never played with node you can't go wrong with checking out [node school][node-school].

[nodejs.org]: https://nodejs.org/ "Official node.js website"
[node-via-package-manager]: https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager "Installing node via package managers"
[nvm]: https://github.com/creationix/nvm "nvm: Node Version Manager - Simple bash script to manage multiple active node.js versions"
[n]: https://github.com/tj/n "n: Node version management"
[for-cats]: http://jsforcats.com/ "JavaScript For Cats: An introduction for new programmers"
[node-school]: http://nodeschool.io/ "node school: Open source workshops built with Node that run in your terminal. Do them on your own or at a workshop nearby."