zotero-plugin-scaffold
v0.1.7
Published
A scaffold for Zotero plugin development.
Downloads
541
Maintainers
Readme
Zotero Plugin Development Scaffold
This is an npm package designed to assist in the development of Zotero plugins. It provides features such as compiling plugins, starting Zotero and installing plugins from source code, reloading plugins when the source code changes, and releasing plugins, and so on.
Initially, the code of this package was part of the zotero-plugin-template repository. To allow downstream developers to easily stay up-to-date, we have abstracted these scripts into a standalone npm package.
This project is under active development, and some APIs may change. However, it is ready for production and has been used in several projects.
For best practices regarding this package, please refer to zotero-plugin-template.
Using in a blank project
# npm
npx zotero-plugin create
# pnpm
pnpm dlx zotero-plugin create
Using in an existing project
01. Install
From NPM
npm install -D zotero-plugin-scaffold
yarn add -D zotero-plugin-scaffold
pnpm add -D zotero-plugin-scaffold
From source code
# clone this repo
git clone https://github.com/northword/zotero-plugin-scaffold.git zotero-plugin-scaffold/
cd zotero-plugin-scaffold/
# build
pnpm install
pnpm build # or pnpm dev
# npm link
cd your-plugin-work-dir/
pnpm link ../zotero-plugin-scaffold
02. Create a config file
The configuration file needs to be stored in the following location.
zotero-plugin.config.ts # also avaliable in *.js *.mjs *.cjs *.ts
You can import helper defineConfig
to get type hints. If no value is specified for an optional property, the default value will be used.
import { defineConfig } from "zotero-plugin-scaffold";
export default defineConfig({
name: "the plugin name",
id: "the plugin id",
namespace: "the plugin namespace",
build: {
esbuildOptions: [
{
entryPoints: ["src/index.ts"],
bundle: true,
target: "firefox115",
},
],
},
});
Full config please refrence in src/types.
03. Create a env file
This file defines Zotero's runtime configuration such as binary paths, profile paths, and environment variables required for Node scripts to run.
NOTE: Do not check-in this file to the repository!
.env
# The path of the Zotero binary file.
# The path is `*/Zotero.app/Contents/MacOS/zotero` for macOS.
ZOTERO_PLUGIN_ZOTERO_BIN_PATH = /path/to/zotero.exe
# The path of the profile used for development.
# Start the profile manager by `/path/to/zotero.exe -p` to create a profile for development.
# @see https://www.zotero.org/support/kb/profile_directory
ZOTERO_PLUGIN_PROFILE_PATH = /path/to/profile
04. Add scripts to package.json
{
"scripts": {
"start": "zotero-plugin serve",
"build": "zotero-plugin build",
"release": "zotero-plugin release"
}
}
05. Run
pnpm run start
pnpm run build
Using in NodeJS code
import { Build, Config } from "zotero-plugin-scaffold";
const config = await Config.loadConfig();
const Builder = new Build(config);
await Builder.run();
Contributing
# Git Clone
git clone https://github.com/northword/zotero-plugin-scaffold.git zotero-plugin-scaffold
cd zotero-plugin-scaffold/
# Install deps
pnpm install
# Development Mode
# This command creates a typescript runtime using jiti,
# and the modified code does not need to be built again.
pnpm run dev
# Build
pnpm run build
# ES Lint
pnpm run lint:fix
License
GNU Affero General Public License Version 3.
Acknowledgements
This project references the design and code of the Zotero Plugin Template.
This project would not be possible without the support of the open source community.