-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from node-girls/node-cheatsheet
Node cheatsheet
- Loading branch information
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | |