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

@stamp/init-property

Package Overview
Dependencies
Maintainers
2
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stamp/init-property

Replaces properties which reference stamps with objects created from the stamps

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

@stamp/init-property

Replaces properties which reference stamps with objects created from the stamps

If your StampA would have, say, property foo which references a StampB, then the property will be replaced with the StampB instance. The parameter for the StampB(arg) will be taken form the foo property of the StampA argument.

You might find it useful for better Dependency Injection pattern.

Usage

const StampA = compose({
    properties: {
        foo: StampB
    }
})
.compose(InitProperty);

// StampB will receive initializer argument `{bar: 'baz'}`
StampA({foo: {bar: 'baz'}});

Example

import InitProperty from '@stamp/init-property';

import Oauth2 from './stamps/oauth2';

const GravatarClient = compose(InitProperty, {
  properties: {
    auth: Oauth2 // the 'auth' property is expected to be passed to the stamp
  },
  methods: {
    getProfilePicture() {
      return fetch('gravatar.com', {
        headers: {
          Authorization: this.auth.getHttpHeader() // accessing this.auth
        }
      });
    }
  }
});

const gravatarClient = GravatarClient({
  auth: { // Passing the data for the 'Oauth2' stamp
    client_id: '1', client_secret: '2', grant_type: 'simple'
  }
});
gravatarClient.getProfilePicture().then(stream => fs.writeFileSync(stream));

FAQs

Package last updated on 08 Mar 2018

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