You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22-10Lines changed: 22 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,28 @@
1
-
Processing.js
2
-
=============
1
+
# Processing.js
3
2
4
-
This is the compilation repository for Processing.js, building the processing.js library from a series of modules, rather than existing as one large file as was the case in version 1.4.1 and earlier.
3
+
For the project website, visit http://processingjs.org
5
4
6
-
**note:** this is not the repository for Processing, the language and IDE. Processing itself is hosted over at https://github.com/processing/processing.
5
+
This is the compilation repository for Processing.js, used in building the `processing.js` library from a series of Node.js flavoured commonjs modules, rather than existing as one large file as was the case in all versions up to and including 1.4.1 (released august 2012) .
7
6
8
-
Getting Processing.js
9
-
---------------------
7
+
The current version is 1.4.13 (released March 21, 2015)
8
+
9
+
**note:** this is not the repository for Processing, the language and IDE. Processing itself is hosted over at https://github.com/processing/processing. This is also not where to file bugs or ask questions about the "JS mode" that can be used with Processing, that project is hosted over at https://github.com/fjenett/javascript-mode-processing
10
+
11
+
## Getting Processing.js
12
+
13
+
### Bower install
14
+
15
+
`bower install processing`
16
+
17
+
### NPM install
18
+
19
+
`npm install processing-js`
20
+
21
+
### Getting Processing.js the plain way
10
22
11
23
Simply grab the `processing.js` or `processing.min.js` files, include them as script on your webpage, and you're all set. See `test.html` for a simple example of using Processing.js on your pages.
12
24
13
-
Playing with the code
14
-
---------------------
25
+
## Playing with the code
15
26
16
27
Clone this project using git, and ensure you have [node.js](http://nodejs.org) installed. After cloning, install the require node packages using `npm install` in the processing-js directory. Modifying the code and building your own `processing.js` and `processing.min.js` files is then a fairly straight forward process. Modify the code as much as you want or need, then:
17
28
@@ -28,15 +39,16 @@ The test script also accepts the following optional arguments:
28
39
*`--noref` will not start a server process and a browser for doing ref testing.
29
40
*`--noautoref` will start a server and a browser for ref testing, but doesn't auto-start the tests.
30
41
42
+
### Manual operations
43
+
31
44
You can also perform the post-unit-test steps manually:
0 commit comments