Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@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.
The npm package @dekkai/env receives a total of 131 weekly downloads. As such, @dekkai/env popularity was classified as not popular.
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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.