Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nareshbhatia/nextjs-starter

A minimal template to get started with Next.js
https://github.com/nareshbhatia/nextjs-starter

Last synced: about 6 hours ago
JSON representation

A minimal template to get started with Next.js

Awesome Lists containing this project

README

        

# Next.js Starter

A minimal template to get started with Next.js.

**Tech Stack**

1. Framework: React 18 + Next.js
2. Styling: Plain CSS
3. Linting: Code Shaper ESLint configuration

![Screenshot](assets/screenshot.png)

## Development Build

```shell
npm ci
npm run dev
```

Now point your browser to http://localhost:3000

## Production Build

```shell
npm ci
npm run build
npm start
```

Now point your browser to http://localhost:3000

## All Commands

```
npm ci # install dependencies
npm run build # builds all workspaces
npm run clean # deletes all build artifacts
npm run dev # run the dev build
npm run fix # lints, formats and attempts to fix any issues (requires `npm run build` has been ran)
npm run lint # runs the linter on all workspaces, useful for debugging lint issues (generally `npm run fix` is preferred)
npm start # run the prod build
```