1.0.8 • Published 4 years ago

dreamparse v1.0.8

Weekly downloads
37
License
-
Repository
-
Last release
4 years ago

Dreamparse

An angular library for integrating parse server with anguar2 aplications.

Docummentation

Installing

run npm i dreamparse@latest in your project folder

Importing

In your app module file.

app.module.ts

...
import { DreamparseModule } from 'dreamparse';
...

@NgModule({
    imports: [
        ...
        DreamparseModule.forRoot({
            serverURL: '{your app server url}',
            appId: '{your app id}',
            masterKey?: '{your app master key (Olny for dev mode)}',
        }),
        ...
})

In your app component file.

app.component.ts

...
import { Dreamparse } from 'dreamparse';
...

@Component({
  ...
})
export class YourComponent {
    constructor(
        private parse: Dreamparse,
    ) {}
}

Usage

For more information on module usage, click here

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.2

4 years ago

1.0.0

4 years ago

1.0.3

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.1

4 years ago