Skip to content

Commit

Permalink
Merge pull request #2 from node-girls/node-cheatsheet
Browse files Browse the repository at this point in the history
Node cheatsheet
  • Loading branch information
claireinez committed Jan 30, 2016
2 parents 1498143 + 5fac0fe commit 281c191
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# cheatsheets
# Cheatsheets

A set of cheatsheets and glossary terms that will be useful for completing the Node Girls workshops.

* [Node Cheatsheet](https://github.com/node-girls/cheatsheets/master/node-cheatsheet.md)
16 changes: 16 additions & 0 deletions node-cheatsheet.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Node Cheatsheet

A glossary of terms for Node.js.


| Term | Meaning |
|----------------|----------------------------------|
| `Node.js` | JavaScript for servers. |
| `web server` | Program that processes requests for the internet via HTTP. |
| `HTTP` | Short for HyperText Transfer Protocol. The set of standards for transferring files over the internet. |
| `npm` | Package manager for Node.js. Allows you to install and publish open source Node projects. |
| `npm package` | Open source Node project, published on npm. |
| `npm init` | Command run in the terminal to initialise your Node project and create a package.json file. |
| `npm install <package-name>` | Command run in the terminal to install an npm package. |
| `package.json` | File holding various metadata about a Node project, such as project name, description or license information, installed packages (or dependencies). Usually located in the root directory. Package.json cheatsheet [here](http://browsenpm.org/package-json). |
| `dependencies` | Packages installed from npm that are necessary to run the project successfully. Listed in the package.json. |

0 comments on commit 281c191

Please sign in to comment.