This package simplifies creating npm packages that work seamlessly across browsers and Node.js environments by handling CommonJS (CJS) and ES modules (ESM) for you.
- TypeScript Support: Compile TypeScript code with ease.
- Zero Configuration: Get started without any complex setup.
- Universal Compatibility: Works across browsers and Node.js.
- ESM and CJS Compilation: Compiles code to both CJS and ESM formats.
- Simple and Lightweight: Easy to use and maintains a small footprint.
- Multiple Threads Can utilize multiple threads for extremely large projects.
- Path Conversion: Converts TypeScript config paths to relative paths for compatibility.
- ESM
__dirnameand__filenameSupport: Enables these variables for ESM compatibility.
Locally:
npm install -D npmizeYarn:
yarn add -D npmizepnpm:
pnpm add -D npmizenpmize <command> [options]Example:
-
Initialize a new project:
npmize init project-name
-
Get help information:
npmize --help npmize --help-usage
If you use TypeScript paths, ensure baseUrl is set in your tsconfig.json. For files within a src directory, set baseUrl to ./src.
{
"compilerOptions": {
"baseUrl": "./src",
"outDir": "./dist",
"paths": { "@/*": ["./*"] }
},
"include": ["./src"]
}- Variable Naming: Avoid using
VGhpcyBuYW1lIGlzIGFscmVhZHkgdXNlZCB0byBlbmFibGUgX19kaXJuYW1lIGFuZCBfX2ZpbGVuYW1lIDop(encoded using Base64) as a top-level variable name.
Made with ❤️ by Nazmus Sayad.