Skip to content

norjs/web-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

86 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The NorJS Runtime Environment.

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.

Install norjs command line interface

npm install -g @norjs/web-client

Install NorJS Runtime Environment

norjs install

Run NorJS app in a development mode

norjs run ./app.json

Build static files for production deployment

norjs build ./app.json

Hello World app

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

About

The NorJS Client Web Runtime Environment

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •  
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy