1.0.1 • Published 7 years ago

mileum v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

Mileum

npm version Build Status

Intro

Mileum is an Angular 2(v4.3.0) framework intended for rapid application development. It's still in BETA phase but is published on npm repository and can be installed and used. Documentation is being updated as new features are being released.

Installation

First add the package to your package.json or install it with the following command from terminal:

npm install --save mileum

Then simply import the module into your project and add it to your AppModule's imports with forRoot().

import { MileumModule } from 'mileum/module';

@NgModule({
 ...
 imports: [
  MileumModule.forRoot()
 ]
 ...
})

You can now use all the features by simply importing them into desired part of your application, check usage for more info on specific features.

Table of contents

Usage

Services

Currently suppored services:

Components

Currently supported components:

Tests

Tests are not supported yet.

Dependencies

Full list of dependencies:

  • "@angular/common": "^4.0.0"
  • "@angular/compiler": "^4.0.0"
  • "@angular/core": "^4.0.0"
  • "@angular/forms": "^4.0.0"
  • "@angular/http": "^4.0.0"
  • "@angular/platform-browser": "^4.0.0"
  • "@angular/platform-browser-dynamic": "^4.0.0"
  • "@angular/router": "^4.0.0"
  • "core-js": "^2.4.1"
  • "rxjs": "^5.1.0"
  • "ts-helpers": "^1.1.1"
  • "zone.js": "^0.8.4"