bundler/doc/run.md

18 lines
441 B
Markdown
Raw Normal View History

2021-07-27 20:17:38 +00:00
## How to run
```shell
deno run --allow-run=deno --allow-net=0.0.0.0,yourgithosting.net cli.ts yourgithosting.net/namespace [port]
2021-07-27 20:17:38 +00:00
```
You can now get raw typescript files (usable by Deno):
`http://localhost:8000/libname@1.0.0/path/file.ts`
Or get a bundled JS version:
`http://localhost:8000/libname@1.0.0/path/file.js`
If the version is not specified, the master branch is used instead:
`http://localhost:8000/libname/path/file.js`