https://github.com/butterdebugger/deno-jsr-template
A Deno and JSR stater template 🦕
https://github.com/butterdebugger/deno-jsr-template
deno example jsr template typescript web
Last synced: about 1 month ago
JSON representation
A Deno and JSR stater template 🦕
- Host: GitHub
- URL: https://github.com/butterdebugger/deno-jsr-template
- Owner: ButterDebugger
- Created: 2024-11-12T05:23:02.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-11-13T03:13:30.000Z (8 months ago)
- Last Synced: 2025-03-02T21:13:33.348Z (4 months ago)
- Topics: deno, example, jsr, template, typescript, web
- Language: TypeScript
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🦕 Deno + JSR Template
A starter template for a new Deno and JSR project.
## Usage
Click
[here](https://github.com/new?template_name=deno-jsr-template&template_owner=butterdebugger)
to create a new repository using this starter template.Run a single test using Deno:
```console
$ deno task test
```Run automatic tests using Deno:
```console
$ deno task dev
```Bundles the source code to vanilla JavaScript:
```console
$ deno task build
```Lints and formats the source code (Should be run before committing or
publishing):```console
$ deno task fix
```Uses Vite to run a local server for web based tests:
```console
$ deno task web
```Lints, formats, and tests your code before publishing it to JSR:
```console
$ deno task publish
```## Checklist
- [ ] Replace `@debutter/deno-jsr-template` in `deno.json` with the name of your
JSR package
- [ ] Change this `README.md` to reflect your project
- [ ] Add a LICENSE and update the `license` field in `deno.json`
- [ ] Write code and tests
- [ ] Add JSDocs to all of your exported declarations
- [ ] Commit and deploy to production with `deno task publish`
- [ ] Link GitHub repository on JSR## License
None at the moment. Enjoy!