Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

pop-it

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pop-it

Pop dependencies into your functions.

Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

pop-it

Angular-style Dependency Injection for Node.js & the browser.

Angular-y DI is fun.

So, "inject" some fun into your app.

Node.js
$ npm install --save pop-it
var pop = require('pop-it');

pop('aPoppy', 'This is it!');

pop(function (aPoppy) {
  // aPoppy = 'This is it!'
})();
The Browser
<script src="pop-it/browser.js"></script>
pop('shoop', 'a-doop');

pop(function (shoop) {
  // shoop = 'a-doop'
})();

Register a dependency (internally known as a poppy)

A poppy can be any value.

// Num nums.
pop('num', 3);

// Stringilings.
pop('str', 'String!');

// Funkadunks.
pop('fn', function () {
  return this;
}, { optional: 'context' });

Execute a poppy

Assume we registered the above dependencies.

pop(function (num, str, fn) {
  // num = 3
  // str = 'String!'
  // fn() = { optional: 'context' }
})();

Poppies are executed lazily, so your ordering isn't super important. Watch how we register a popped function to a poppy.

// register "b" with the value of a lazily-executed popped function.
pop('b', pop(function (a) {
  return a;
}));

pop('a', 'a');

pop(function (b) {
  // b() = 'a'
})();

Pop to the It.

License

Copyright (c) 2014 Stephen Sawchuk. Licensed under the MIT license.

Keywords

angular

FAQs

Package last updated on 21 Aug 2014

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