Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/iliftalot/template-plugin

Optimized template for initializing Obsidian API plugins for development.
https://github.com/iliftalot/template-plugin

obsidian obsidian-md obsidian-plugin obsidian-tem

Last synced: 2 days ago
JSON representation

Optimized template for initializing Obsidian API plugins for development.

Awesome Lists containing this project

README

        

# Template Plugin
Conveniently initialize a new Obsidian plugin with custom configurations.

## Features
- Globally defined `Process.env` object which can be used to circumnavigate mobile compatibility issues between the `process` module and mobile platforms.
- NOTE: You must create a `.env` file in the root of your plugin directory.
- NPM development script specifically for logging within `esbuild.config.mjs` on build using `npm run dev:log`.
- Two Obsidian development packages which define undocumented typings and provide utility functions for the Obsidian API.
- [obsidian-typings](https://github.com/Fevol/obsidian-typings).
- [obsidian-dev-utils](https://github.com/RyotaUshio/obsidian-dev-utils/).
- Utilizes [terser](https://github.com/terser/terser) for main.js minification to reduce plugin size.
- Deep merges the plugin settings with [deepmerge-ts](https://github.com/RebeccaStevens/deepmerge-ts).
- See other utilities [here](https://github.com/iLiftALot/template-plugin/tree/main/typings).