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.
@dekkai/env
Advanced tools
Utility methods to detect runtimes and load modules dynamically.
Check out the full API Documentation
Browser/NodeJS
$ yarn add @dekkai/env
Deno
// import from directly from a CDN, like unpkg.com
import {isDeno, isBrowser, isNodeJS, loadModule} from 'https://unpkg.com/@dekkai/env';
// import the desired methods
import {isDeno, isBrowser, isNodeJS, loadModule} from '@dekkai/env';
// test for deno
const deno = isDeno();
// test for node
const node = isNodeJS();
// test for browser
const browser = isBrowser();
// import a module at runtime, this is generally the same as calling `await import(module)` but it is safe for all
// platforms and should be able to survive bundlers, also wraps `require` for node environments where needed.
// The main advantage is to import modules needed for a specific platform at runtime, think importing `fs` for node
// at runtime but still being able to compile for all platforms.
let fs;
if (node) {
fs = await loadModule('fs');
} else if (deno) {
fs = await loadModule('https://deno.land/std/fs/mod.ts');
} else {
fs = await loadModule('https://unpkg.com/browserfs');
}
// ...
Check out the full API Documentation
FAQs
Utility methods to detect runtimes and load modules dynamically.
We found that @dekkai/env 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.