Skip to content

Commit fc89f94

Browse files
committed
Merge branch 'master' of github.com:ukyo/lz4.js
2 parents 16a4e1e + d9ccd22 commit fc89f94

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

README.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,55 @@ html
2828

2929
* source `Uint8Array`
3030
* return `Uint8Array`
31+
32+
## Development
33+
34+
### Require
35+
36+
* emscripten
37+
* llvm 3.2
38+
* subversion
39+
* nodejs
40+
41+
### Init
42+
43+
Get repos.
44+
45+
```
46+
git clone [email protected]:ukyo/lz4.js.git
47+
```
48+
49+
If you don't install the grunt-cli run below.
50+
51+
```
52+
npm install -g grunt-cli
53+
```
54+
55+
Install dev dependencies
56+
57+
```
58+
cd path/to/lz4.js
59+
npm install
60+
```
61+
62+
Download original LZ4 repos and compile for development.
63+
64+
```
65+
grunt init
66+
```
67+
68+
### Write codes
69+
70+
Watch codes update and test.
71+
72+
```
73+
grunt watch
74+
```
75+
76+
### Release
77+
78+
Release build.
79+
80+
```
81+
grunt release
82+
```

0 commit comments

Comments
 (0)