Skip to content

Seed project to boost up Zettel extension development

Notifications You must be signed in to change notification settings

zettelooo/zettel-extension-seed

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Zettel Module Boilerplate

This repository contains a sample project that you can use as the starting point for developing a Zettel module.

If it's your first time buidling a Zettel module, please check out Zettel docs for beginner tutorials.


The repository consists of three projects:

  1. The client project, this is the main extension implementation which will be a part of the Web app itself.

    Here are the scripts to support that:

    • To update the Zettel official dependencies to their newest versions in order to access the latest API end-points and data models:

      client$ npm run update
    • To upgrade the extension version in public/manifest.jsonc file:

      client$ npm run version -- patch
      client$ npm run version -- minor
      client$ npm run version -- major
    • To build the extension and pack the zip file to be uploaded to Zettel Developer Console:

      client$ npm run build

      Note: The built extension goes to the client/out folder.

    • Same as above, plus it also takes care of the upload part:

      client$ npm run deploy
  2. The server project, which can only help by extensions that require their own server-side implementation.

    Here are the scripts to support that:

    • To update the Zettel official dependencies to their newest versions in order to access the latest API end-points and data models:

      server$ npm run update
    • To start the server:

      server$ npm run dev   # For development, with hot reloads
      server$ npm start     # For production

      Note: You can specify on what port it will serve your API by prepending PORT=4000 to the commands above, by default it uses the port 4000.

  3. The shared project, which contains the shared implementation between the two others.

    Here are the scripts to support that:

    • To update the Zettel official dependencies to their newest versions in order to access the latest API end-points and data models:

      shared$ npm run update

All projects are filled with some dummy implementations to show-case how to setup things, feel free to modify it, or even start your own projects following the prctices used in this seed project.

About

Seed project to boost up Zettel extension development

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published