0.0.15 • Published 2 years ago

providerjs v0.0.15

Weekly downloads
3
License
ISC
Repository
github
Last release
2 years ago

ProviderJS

A NodeJS framework for create general purpose.

Write using TypeScript with Visual Studio Code.

import { Injectable, Application } from 'providerjs';

@Injectable()
export class OneService {
    public value = 'OneService';
}

@Application({
    imports: [],
    providers: [OneService],
    exports: []
})
export class OneModule {

    public constructor(
        oneService: OneService
    ) {
        console.log('OneModule constructor: OneService: ' + oneService.value);
    }
}

Installation

$ npm install providerjs

Features

  • Lightweight
  • Dependencie Inject system
  • Intercept abstract implementation

Docs

Quick Start

Create a empty NPM package:

npm init -y

Install ProviderJS:

npm install providerjs --save

Work with code:

code .

Example

https://github.com/Cliveburr/providerjs/tree/master/tests
0.0.14

2 years ago

0.0.15

2 years ago

0.0.13

4 years ago

0.0.11

4 years ago

0.0.12

4 years ago

0.0.10

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago