Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

angular-provide-once

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-provide-once

Remove the need to use forRoot in your Angular 2+ modules.

  • 3.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

Angular Provide Once npm version

🔂 Removes the need to use forRoot in Angular 2+ modules by providing guaranteed singleton services.

Build Status Codecov Dependency Status devDependency Status peerDependency Status

Description

  • No .forRoot(): Allows module consumers to import without calling a forRoot method
  • Singletons: Allows module creators to provide singleton services that don't require consumers to be concerned with accidentally providing multiple instances
  • Top level : If multiple instances are attempted, the top level instance in the provider tree will be used
  • Multiple consumers: If multiple libraries depend on your service and those libraries are used in a single Angular project, you can still guarantee a single instance of your service

Install

npm install angular-provide-once --save

Usage in @NgModule

import { NgModule } from '@angular/core';
import { ProvideOnce } from 'angular-provide-once';

import { DependantService } from './dependant-service';
import { MyService } from './my-service';
import { OtherService } from './other-service';

@NgModule({
  imports: [],
  providers: [
    OtherService,
    DependantService,
    ...ProvideOnce(MyService, [DependantService])
  ],
  declarations: []
})
export class MyModule { }

Api

...ProvideOnce(targetService[, dependencyArray])

Paramaters

targetService

The service that should be provided once.

dependencyArray

An optional array of services that the targetService depends on. Only include immediate dependencies (not dependencies of dependencies).

Return value

ProvideOnce returns an array of Providers. Use the spread operator (e.g. ...ProvideOnce) to include it along with other services.

License

angular-provide-once is licensed under the MIT Open Source license. For more information, see the LICENSE file in this repository.

Keywords

FAQs

Package last updated on 14 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc