Socket
Book a DemoInstallSign in
Socket

npm-sandbox

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

npm-sandbox

A sandbox to deploy and test the development of npm packages

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

NPM Sandbox

This is a npm library for learning how to use make npm packages.

$ npm install --save npm-sandbox

Try it out with a test app:

// $ node test.js

const { setFn, triggerFn } = require('npm-sandbox')

console.log('Before function mutation: ', triggerFn('First attempt'))

setFn((str) => {
  return str.toUpperCase()
})

console.log('After function mutation', triggerFn('Whats up Doc'))

It should output:

Before function mutation:  () => "Unchanged fnA"
Changing fn to  (str) => {
  return str.toUpperCase()
}
After function mutation (str) => {
  return str.toUpperCase()
}

Keywords

npm

FAQs

Package last updated on 07 Feb 2019

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