Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevoree/kevoree-browser-runtime
Kevoree JS browser runtime
https://github.com/kevoree/kevoree-browser-runtime
Last synced: about 1 month ago
JSON representation
Kevoree JS browser runtime
- Host: GitHub
- URL: https://github.com/kevoree/kevoree-browser-runtime
- Owner: kevoree
- License: lgpl-3.0
- Created: 2015-03-13T16:01:23.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-12-10T11:33:09.000Z (about 6 years ago)
- Last Synced: 2024-04-10T22:30:17.428Z (9 months ago)
- Language: JavaScript
- Homepage: http://runjs.kevoree.org
- Size: 1.91 MB
- Stars: 0
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kevoree Browser Runtime
## [Demo](http://runjs.kevoree.org)
### Documentation
```sh
# only once :
npm install # retrieve the dependencies
bower installgrunt serve
```### DevMode Documentation
Go to **Settings** and `enable` **DevMode**
In this mode, the runtime will try to resolve the **DeployUnits** on a local registry at `localhost:59000` instead
of the classic `registry.npmjs.org`### Component UI
Components can tweak there UI scripts, styles, Angular modules and UI metadata
using a JSON formatted configuration file: **ui-config.json***ui-config.json example:*
```json
{
"scripts": [
"my-local-script.js",
"//cdn.scripts.foo/my-lib.js"
],
"styles": [
"my-local-style.css",
"//cdn.styles.bar/my-style.css"
],
"depModules": [
"myNgModule"
],
"layout": {
"width": 2,
"height": 1
}
}
```