https://github.com/damien-hl/nitro-tests-example
Testing a Nitro (unjs/nitro) application
https://github.com/damien-hl/nitro-tests-example
example nitro test testing tests typescript unjs vitest
Last synced: 8 months ago
JSON representation
Testing a Nitro (unjs/nitro) application
- Host: GitHub
- URL: https://github.com/damien-hl/nitro-tests-example
- Owner: damien-hl
- Created: 2023-08-23T09:55:07.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-25T19:20:31.000Z (about 2 years ago)
- Last Synced: 2024-12-04T17:11:46.143Z (10 months ago)
- Topics: example, nitro, test, testing, tests, typescript, unjs, vitest
- Language: TypeScript
- Homepage:
- Size: 156 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nitro Minimal Starter
Look at the [Nitro documentation](https://nitro.unjs.io/) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# npm
npm install# yarn
yarn install# pnpm
pnpm install
```## Development Server
Start the development server on
```bash
npm run dev
```## Production
Build the application for production:
```bash
npm run build
```Locally preview production build:
```bash
npm run preview
```Check out the [deployment documentation](https://nitro.unjs.io/deploy) for more information.