You'll need the following software to start developing:
-
An IDE or Text Editor
We recommend using Visual Studio Code, but any other IDE or text editor will work.
- Above the file list, click the green button which says "Use this template".
- Select the account you want to own the repository.
- Type a name for your repository, and an optional description.
- Choose a repository visibility.
- Click "Create repository from template".
- Browse to your new GitHub repository
- Click on the Clone or download button
- Press "HTTPS"
- Copy the link
- Open a terminal in the directory where you want to clone the repository
- Run
git clone <link>
to download the repository.
Open your terminal of choice and navigate into the folder of the repository you just cloned. If you are interested in learning about the structure of the plugin template, check the plugin structure documentation page.
Then run:
npm install
This will install a very minimal React App, along with the RemNote plugin SDK (software development kit).
Inside the plugin folder, run:
npm run dev-sandbox-only
If you are interested in building your own plugins, taking a look through the source code for our example plugins and plugins built by the community would be a great starting point. Of course, you should also check out the official documentation, guides and tutorials on our plugin website. If you are new to writing plugins, we recommend checking out the dictionary plugin project tutorial.