![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
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.
unenv-nightly
Advanced tools
<!-- automd:badges color=yellow packagephobia -->
unenv provides a collection of Node.js and Web polyfills and mocking utilities with configurable presets for converting JavaScript code and libraries to be platform and runtime agnostic, working in any environment including Browsers, Workers, Node.js, Cloudflare Workers, Deno.
Unenv is used by Nitro and Nuxt today.
[!NOTE] You are on the development (v2) branch. Check out v1 for the current release.
# ✨ Auto-detect
npx nypm install -D unenv
# npm
npm install -D unenv
# yarn
yarn add -D unenv
# pnpm
pnpm install -D unenv
# bun
bun install -D unenv
# deno
deno install --dev unenv
Using env
utility and built-in presets, unenv
will provide an abstract configuration that can be used in bundlers (rollup.js, webpack, etc.).
import { defineEnv } from "unenv";
const { env } = defineEnv({
nodeCompat: true,
resolve: true,
presets: [],
overrides: {},
});
const { alias, inject, polyfill, external } = env;
Note: You can provide as many presets as you want. unenv will merge them internally and the right-most preset has a higher priority.
node
Suitable to convert universal libraries working in Node.js.
fetch
APIimport { env, node } from "unenv";
const envConfig = env(node, {});
nodeless
Suitable to transform libraries made for Node.js to run in other JavaScript runtimes.
import { env, nodeless } from "unenv";
const envConfig = env(nodeless, {});
unenv
provides a replacement for Node.js built-in modules compatible with any runtime.
unenv
provides a replacement for common npm packages for cross-platform compatibility.
// Magic proxy to replace any unknown API
import MockProxy from "unenv/runtime/mock/proxy";
// You can also create named mocks
const lib = MockProxy.__createMock__("lib", {
/* overrides */
});
To discover other polyfills, please check ./src/runtime.
You can use the nightly release channel to try the latest changes in the main
branch via unenv-nightly
.
If directly using unenv
in your project:
{
"devDependencies": {
"unenv": "npm:unenv-nightly"
}
}
If using unenv
via another tool (Nuxt or Nitro) in your project:
{
"resolutions": {
"unenv": "npm:unenv-nightly"
}
}
Published under the MIT license.
Made by @pi0 and community 💛
🤖 auto updated with automd
FAQs
<!-- automd:badges color=yellow packagephobia -->
The npm package unenv-nightly receives a total of 438,502 weekly downloads. As such, unenv-nightly popularity was classified as popular.
We found that unenv-nightly demonstrated a healthy version release cadence and project activity because the last version was released less than 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.