https://github.com/loglayer/loglayer-plugin-boilerplate
A template for creating plugins for LogLayer
https://github.com/loglayer/loglayer-plugin-boilerplate
boilerplate logging logs plugin template typescript
Last synced: 7 months ago
JSON representation
A template for creating plugins for LogLayer
- Host: GitHub
- URL: https://github.com/loglayer/loglayer-plugin-boilerplate
- Owner: loglayer
- License: mit
- Created: 2025-01-11T09:06:33.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-11T01:09:45.000Z (10 months ago)
- Last Synced: 2025-06-16T02:09:04.582Z (9 months ago)
- Topics: boilerplate, logging, logs, plugin, template, typescript
- Language: TypeScript
- Homepage: https://loglayer.dev
- Size: 111 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Plugin Boilerplate for LogLayer
This is a template for creating plugins for use with [LogLayer](https://loglayer.dev).
See the [Creating Plugins](https://loglayer.dev/plugins/creating-plugins.html) documentation
for more information.
## Installation
```bash
npm install
```
## Run Tests
```bash
npm run test
```
## Lint + Fix
Uses [Biome](https://biomejs.dev/) for linting and formatting.
```bash
npm run lint
```
## Build
Uses [tsup](https://github.com/egoist/tsup) to build commonjs and esm versions.
```bash
npm run build
```
## Project Structure
```plaintext
.
├── src/
│ ├── __tests__/ # Test files
│ ├── index.ts # Plugin code
```