This is a MIT-licensed runtime environment for apps created with our not-yet-published commercial NorJS Development Environment, however it will run any compatible AngularJS ES6 app as well.
The NorJS RE is still under active development and there is no official stable release until we release it to the first commercial customer.
You may follow the progress in the feature issue #1.
npm install -g @norjs/web-client
norjs install
norjs run ./app.json
norjs build ./app.json
You can extend your app logic with external ES6 enabled AngularJS modules.
Your custom module ./myapp.js
:
import angular from "angular";
let waMainViewComponent = {
template: `
<main>
<h3>Main page</h3>
<p>Hello World</p>
</main>
`,
controller: class WaMainViewController {
}
};
export default angular.module(
"myapp"
, [])
.component('myMainView', waMainViewComponent)
.name;
Configuration file ./app.json
:
{
"name": "Hello World",
"modules": [
"myapp"
],
"states": {
"main": {
"name": "main"
, "options": {
"url": "/main"
, "component": "myMainView"
}
}
}
}
Then file ./norjs.json
(or specify --import=myapp.js --config=./app.json
):
{
"import": "./myapp.js",
"config": "./app.json"
}
Then run it:
norjs run
Or build it:
norjs build