Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
dev-sandbox
Advanced tools
You can install dev-sandbox
globally and use it from any local package.
$ yarn global add dev-sandbox
or
$ npm i -g dev-sandbox
cosmiconfig
is used for managing configuration. Any of rc
file can be used for config. For example: .sandboxrc
, .sandboxrc.json
, .sandboxrc.js
, etc (see examples in cosmiconfig
).
You can view an example of config below (.sandboxrc.js
):
const initialCode = `
import React from 'react'
import ReactDOM from 'react-dom'
import ThemeProvider from './src/ThemeProvider'
import Button from './src/components/Button'
const App: React.FC = () => {
return (
<ThemeProvider>
<Button>Hello</Button>
</ThemeProvider>
);
}
ReactDOM.render(<App />, document.getElementById('app'))
`;
module.exports = {
// Option that enables the use of typescript (default: true)
typescript: true,
// Initial code in editor (default: '// Example...')
initialCode
}
$ cd ./my-package
$ dev-sandbox
✔ Typescript config loaded from tsconfig.json
✔ Types generated
✔ Server listening on http://localhost:3000
dev-sandbox
is MIT licensed.
FAQs
Sandbox for local development
The npm package dev-sandbox receives a total of 6 weekly downloads. As such, dev-sandbox popularity was classified as not popular.
We found that dev-sandbox demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.