Skip to content

alloy-org/plugin-template

Repository files navigation

Your Cool Amplenote Plugin

In this section you can provide some details about the Amplenote plugin that this repo will implement.

Installation

  1. Clone this repo. git clone [email protected]:alloy-org/plugin-template.git
  2. Copy its contents to a directory with the name of your plugin. cp -r plugin-template my-cool-plugin
  3. cd my-cool-plugin
  4. Install node and npm with your package manager of choice. brew install node or apt install nodejs
  5. Run npm install to install the packages (jest, fetch (for Jest)).
  6. Set up your repo as the remote origin. git remote set-url origin [email protected]:my-org/my-cool-plugin.git
  7. Push your repo to GitHub. git push
  8. 🎉 Optional
  9. If you are going to use any secret keys, put them in .env.example, then copy that to .env and fill in whatever environment variables you need

Testing

Run NODE_OPTIONS=--experimental-vm-modules npm test to run the tests.

If it complains about jsdom being absent, run npm install -D jest-environment-jsdom and try again.

Testing With JetBrains IDE (using a visual debugger, like the Amplenote Founding Developers do)

If you are using a JetBrains IDE (Webstorm, Rubymine, anything that speaks Javascript), you can get an excellent debugging environment to run your tests.

Read how to set up tests with this environment in JetBrains IDEs.

Run tests continuously as modifying the plugin

NODE_OPTIONS=--experimental-vm-modules npm run test -- --watch

Technologies used to help with this project

Building and Publishing

Once your plugin is ready to test within Amplenote, you can build and test it within Amplenote by following these steps:

  1. Create a note for your plugin, if you haven't already. It needs to have at least a) settings table and b) code block. More details on a valid plugin note are in the Guide to Building Plugins
  2. Install the Github Developers Plugin.
  3. Compile your plugin using npm run build or node esbuild.js from the root folder for your project
  4. Commit the resulting file (default location: build/compiled.js) to your git repo (e.g., git add build/compiled.js && git commit -m "Compiled plugin")
  5. Push your changes to GitHub (git push)
  6. Choose "Github Plugin Builder: Refresh" from the note options menu in your plugin note

About

Basic scaffolding to build an Amplenote plugin

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published