JSPM

  • Created
  • Published
  • Downloads 73
  • Score
    100M100P100Q67069F
  • License MIT

typescript backend framework

Package Exports

  • nodart
  • nodart/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (nodart) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

TYPESCRIPT BACKEND FRAMEWORK

!!! UNDER CONSTRUCTION...


DOWNLOAD SAMPLE APPLICATION

git clone https://github.com/nodart-labs/nodart-app.git

RUN APPLICATION UNDER DEVELOPMENT SERVER

npm run dev

APPLICATION START EXAMPLE

import {App} from 'nodart'
const config = require('./config')
const routes = require('./config/routes')

new App({...config, routes}).init().then(app => app.serve(3000))