Remove mention of paper-node.js from README.

This commit is contained in:
Jürg Lehni 2016-01-27 11:49:17 +01:00
parent 810428569a
commit 1888e7d64f

View file

@ -32,16 +32,14 @@ To learn more about its features for dependence tracking, see
### Which Version to Use? ### Which Version to Use?
The various distributions come with three different pre-build versions of The various distributions come with two different pre-build versions of
Paper.js, in minified and normal variants: Paper.js, in minified and normal variants:
- `paper-full.js` The full version for the browser, including PaperScript - `paper-full.js` The full version for the browser, including PaperScript
support and Acorn.js support and Acorn.js
- `paper-core.js` The core version for the browser, without PaperScript - `paper-core.js` The core version for the browser, without PaperScript
support nor Acorn.js. Use this to shave off some bytes when working with support nor Acorn.js. You can use this to shave off some bytes and compilation
JavaScript directly. time when working with JavaScript directly.
- `paper-node.js` The version for Node.js. It is recommended to install this
through NPM, see below.
### Installing Node.js, NPM and Bower ### Installing Node.js, NPM and Bower
@ -172,9 +170,8 @@ files, you can run the `build` task:
gulp build gulp build
You will then find the built library files inside the `dist` folder, named You will then find the built library files inside the `dist` folder, named
`paper-full.js`, `paper-core.js` and `paper-node.js`, along with their minified `paper-full.js` and `paper-core.js`, along with their minified versions. Read
versions. Read [Which Version to Use?](#which-version-to-use) for an explanation more about this in [Which Version to Use?](#which-version-to-use).
of the different versions.
### Running Directly from Separate Source Files ### Running Directly from Separate Source Files