Scaffold a new Beaver Notes plugin in seconds.
npx @beaver-notes/create-pluginnpx create-beaver-plugin -y # skip prompts, use defaults
npx create-beaver-plugin --typescript # force TypeScript
npx create-beaver-plugin --javascript # force JavaScript
npx create-beaver-plugin --dir ./my-app # set output directorymy-plugin/
├── manifest.json # populated from prompts
├── package.json # scripts: build, pack, watch, install:local
├── tsconfig.json # TypeScript config
├── .gitignore
├── README.md
└── src/
└── index.ts # typed entry with scaffolded example
cd my-plugin
npm install # install SDK + builder
npm run build # compile
npm run package # build + create .beax
npm run install:local # build + install to Beaver NotesThen open Beaver Notes → Settings → Plugins
MIT