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

fuxor

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fuxor

Simple dependency injection by overriding require

  • 2.2.2
  • Source
  • npm
  • Socket score

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

Build Status

Fuxor

Very simple DI for node.

const fuxor = require('fuxor');
fuxor.add('fs', {
	readFileSync: function () {
		return 'Not really a file';
	}
});
const fs = require('fs');
console.log(fs.readFileSync('not really', 'anything', { whatever:'you want'}));//'Not really a file'

API

Add
const fuxor = require('fuxor');
// Add one entry to be overridden 
fuxor.add('fs', {
  readFileSync: function () {
    return 'Not really a file';
  }
});
// Add one entry to be overridden 
fuxor.add({ name: 'fs', result: {
  readFileSync: function () {
    return 'Not really a file';
  }
}});
// Add multiple entries at once
fuxor.add([{ name: 'fs', result: {
  readFileSync: function () {
    return 'Not really a file';
  }
}, {
  name: 'request',
  result: function () {
    return 'Not really a file';
  }
}]);
Clear
const fuxor = require('fuxor');
// After items have been added
fuxor.clear(); // All entries have been removed
remove
const fuxor = require('fuxor');
// After items have been added
fuxor.remove('your-module'); // The module has been removed
reset
const fuxor = require('fuxor');
// After items have been added
fuxor.reset(); // require now works back to normal

Keywords

FAQs

Package last updated on 02 Dec 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