Socket
Socket
Sign inDemoInstall

fuxor

Package Overview
Dependencies
0
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fuxor

Simple dependency injection by overriding require


Version published
Weekly downloads
2.4K
decreased by-0.29%
Maintainers
1
Created
Weekly downloads
 

Readme

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

Last updated on 16 Jan 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc