Full starter stack to develop CJS/ESM compatible npm packages with TypeScript, Vitest, ESLint, Prettier, and GitHub Actions.
Detailed overview of the stastack: https://youtu.be/ABRpwxLdGho
Deploy your open-source project to npm with ease, with fully covered bundling, testing, linting and deployment setup out of the box, don't worry about CJS or ESM, bundling your typescript definitions or anything else, focus on coding out your solution and let the stack take care of the rest.
Build your own open-source project today! 🚀
- TypeScript: TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.
- Vitest: A modern test runner built on top of Vite.
- Biome: Biome statically analyzes your code to find issues and formats your code with a consistent, opinionated style.
- GitHub Actions: Automate your workflow from idea to production.
- tsup - Zero-config bundler for tiny TypeScript libraries.
- ESM/CJS ready - Write your code in TypeScript and publish it as ESM and CJS with 0 configuration.
- Are The types wrong? ready - Passes all the checks for typings on https://arethetypeswrong.github.io/ by default.
- ESM/CJS test apps setup - Test your package in both ESM and CJS environments already setup for you.
- Test runner setup - Test your open source package with Vitest already setup for you.
- Linting setup - Lint your code with ESLint and Prettier already setup for you.
- GitHub Actions setup - Automate deployments to npm by using GitHub Actions.
- Use this template to create a new repository.
- Clone the repository.
- Change the package name in
package.json
. - Change the
open-source-stack
dependency in your test-apps to your name - Install the dependencies with
npm install
. - Change the
repository
,bugs
, andhomepage
fields inpackage.json
to your github repo. - Change the license if required.
- Add the NPM_TOKEN secret to your GitHub repository.
- Start coding!
npm run build
- Build the package.npm run test
- Run the tests.npm run lint
- Lint the code.npm run dev
- Start the package and ESM test app in watch mode for development.npm run dev:cjs
- Start the package and CJS test app in watch mode for development.