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.9%
Maintainers
1
Install size
16.4 kB
Created
Weekly downloads
 

Readme

Source

Fuxor

Build Status npm version Coverage Status 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

Add what should be returned when the module is required

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

Clear all entries

const fuxor = require('fuxor');
// After items have been added
fuxor.clear() // All entries have been removed
remove

Remove individual module to restore the original module

const fuxor = require('fuxor')
// After items have been added
fuxor.remove('your-module') // The module has been removed
reset

Resets back to default require behavior

const fuxor = require('fuxor')
// After items have been added
fuxor.reset() // require now works back to normal
org

Load a directory structure as an org

const fuxor = require('fuxor')
// given a directory named modules fuxor loads subdirectories
// respects the package.json in each directory
// - modules
// -- myModule
// -- myOtherModule
fuxor.init({
  name: '@fuxor',
  path: path.join(__dirname, './modules'),
})
const myModule = require('@fuxor/myModule')
const myOtherModule = require('@fuxor/myOtherModule')

Keywords

FAQs

Last updated on 28 Jun 2020

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