https://github.com/barbapapazes/starter-nitro
An opinionated starter to create Nitro server
https://github.com/barbapapazes/starter-nitro
nitro starter template unjs
Last synced: 6 months ago
JSON representation
An opinionated starter to create Nitro server
- Host: GitHub
- URL: https://github.com/barbapapazes/starter-nitro
- Owner: Barbapapazes
- License: mit
- Created: 2023-10-10T09:55:09.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-04T20:45:47.000Z (6 months ago)
- Last Synced: 2025-04-06T06:31:59.258Z (6 months ago)
- Topics: nitro, starter, template, unjs
- Language: JavaScript
- Homepage:
- Size: 156 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Opinionated Nitro Starter
**Ready to start your next project with Nitro?** This starter is a great place to start.
Look at the [Nitro documentation](https://nitro.unjs.io/) to learn more and do not forget to change the README.md and, LICENSE.md and package.json files.
## Features
- CI with GitHub Actions
- [Autofix](https://autofix.ci) ready
- Preconfigured ESLint with [@antfu/eslint-config](https://github.com/antfu/eslint-config)## Setup
Make sure to install the dependencies:
```bash
# pnpm
pnpm install
```## Development
Start the development server on `http://localhost:3000`
```bash
pnpm run dev
```## Linting
Run ESLint:
```bash
pnpm run lint
```Fix ESLint errors:
```bash
pnpm run lint:fix
```## Production
Build the application for production:
```bash
pnpm run build
```Locally preview production build:
```bash
pnpm run preview
```Check out the [deployment documentation](https://nitro.unjs.io/deploy) for more information.