Skip to content

Commit c407cfc

Browse files
committed
Prepare beta release.
1 parent cb21bdb commit c407cfc

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,7 @@ tools\build_wasm_win_release.bat
111111
### 4. Build the native project (optional)
112112

113113
If you want to debug the code, it's useful to build a native project. To do that, just use cmake to generate the project of your choice.
114+
115+
## How to run locally?
116+
117+
To run the demo and the examples locally, you have to start a web server. Run `npm install` from the root directory, then run `npm start` and visit `http://localhost:8080`.

examples/node_local_load_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
let fs = require ('fs');
2-
const assimpjs = require ('./assimpjs.js')();
2+
const assimpjs = require ('../dist/assimpjs.js')();
33

44
assimpjs.then ((ajs) => {
55
// create new file list object

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "assimp-js",
33
"description": "Javascript interface for the assimp library.",
4-
"version": "0.0.1",
4+
"version": "0.0.1-beta",
55
"repository": "github:kovacsv/assimpjs",
66
"license": "MIT",
77
"devDependencies": {

0 commit comments

Comments
 (0)