Skip to content

Commit b4c3d88

Browse files
committed
Merge pull request #491 from ralphtheninja/master
added link to Going Native and fixed some typos
2 parents 7905fbc + eccd1cb commit b4c3d88

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ $ node-gyp configure
8282
```
8383

8484
__Note__: The `configure` step looks for the `binding.gyp` file in the current
85-
directory to processs. See below for instructions on creating the `binding.gyp` file.
85+
directory to process. See below for instructions on creating the `binding.gyp` file.
8686

8787
Now you will have either a `Makefile` (on Unix platforms) or a `vcxproj` file
8888
(on Windows) in the `build/` directory. Next invoke the `build` command:
@@ -96,7 +96,7 @@ in `build/Debug/` or `build/Release/`, depending on the build mode. At this poin
9696
you can require the `.node` file with Node and run your tests!
9797

9898
__Note:__ To create a _Debug_ build of the bindings file, pass the `--debug` (or
99-
`-d`) switch when running the either `configure` or `build` command.
99+
`-d`) switch when running either the `configure`, `build` or `rebuild` command.
100100

101101

102102
The "binding.gyp" file
@@ -120,8 +120,9 @@ A barebones `gyp` file appropriate for building a node addon looks like:
120120
}
121121
```
122122

123-
Some additional resources for writing `gyp` files:
123+
Some additional resources for addons and writing `gyp` files:
124124

125+
* ["Going Native" a nodeschool.io tutorial](http://nodeschool.io/#goingnative)
125126
* ["Hello World" node addon example](https://github.com/joyent/node/tree/master/test/addons/hello-world)
126127
* [gyp user documentation](http://code.google.com/p/gyp/wiki/GypUserDocumentation)
127128
* [gyp input format reference](http://code.google.com/p/gyp/wiki/InputFormatReference)
@@ -136,9 +137,9 @@ Commands
136137
| **Command** | **Description**
137138
|:--------------|:---------------------------------------------------------------
138139
| `build` | Invokes `make`/`msbuild.exe` and builds the native addon
139-
| `clean` | Removes any the `build` dir if it exists
140+
| `clean` | Removes the `build` directory if it exists
140141
| `configure` | Generates project build files for the current platform
141-
| `rebuild` | Runs "clean", "configure" and "build" all in a row
142+
| `rebuild` | Runs `clean`, `configure` and `build` all in a row
142143
| `install` | Installs node development header files for the given version
143144
| `list` | Lists the currently installed node development file versions
144145
| `remove` | Removes the node development header files for the given version

0 commit comments

Comments
 (0)