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

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

Next.js 15 starter template: Nodejs 22, TypeScript, React 19, shadcn ui, Docker
https://github.com/gonzaloplaza/nextjs-starter

next-starter next-starter-template nextjs nextjs15 react react19-starter shadcn shadcn-ui

Last synced: about 1 month ago
JSON representation

Next.js 15 starter template: Nodejs 22, TypeScript, React 19, shadcn ui, Docker

Awesome Lists containing this project

README

          

# nextjs-starter

[![TypeScript](https://badges.frapsoft.com/typescript/code/typescript.svg?v=101)](https://www.typescriptlang.org/)
![GitHub Repo Size](https://img.shields.io/github/repo-size/gonzaloplaza/nextjs-starter)
[![MIT Licence](https://badges.frapsoft.com/os/mit/mit.svg?v=103)](https://opensource.org/licenses/mit-license.php)

## Getting Started

First, run the development server:

```bash
pnpm install
pnpm dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.

This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically
optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.

### Build Docker image for production

You can build an optimized Docker production-ready image with the standard command:

```sh
docker build -t nextjs-starter .
```

And then run the container passing environment variables if needed within the initialization:

```sh
docker run --rm -it -p 3000:3000 --name nextjs-starter nextjs-starter
```

## Learn More

To learn more about Next.js, take a look at the following resources:

- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.

You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions
are welcome!