Skip to content

Commit df21265

Browse files
committed
Add webpack; Setup instructions
1 parent 40b814a commit df21265

10 files changed

+2296
-125
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules/
22
npm-debug.*
3+
dist/
34
out/
45
raw/

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,32 @@ Side effects:
2525
- Good fire test for the compiler
2626
- Good benchmark when comparing both versions
2727
- Benefits standard library design ideas
28+
29+
Getting started
30+
---------------
31+
32+
If you'd like to try out NEXT today or even plan to contribute, this is how you do it:
33+
34+
```
35+
$> git clone https://github.com/AssemblyScript/next.git
36+
$> cd next
37+
$> npm install
38+
$> node bin\asc yourModule.ts
39+
```
40+
41+
Building a browser bundle to `dist/assemblyscript.js` (requires [binaryen.js](https://github.com/AssemblyScript/binaryen.js)):
42+
43+
```
44+
$> npm run build
45+
```
46+
47+
Running the [tests](./tests):
48+
49+
```
50+
$> npm test
51+
```
52+
53+
Development status
54+
------------------
55+
56+
For now, see the [compiler tests](https://github.com/AssemblyScript/next/tree/master/tests/compiler) for an overview of what's supposed to be working already.

0 commit comments

Comments
 (0)