https://github.com/thuyencode/nextjs-step-boilerplate
Next.js STEP Boilderplate (Personal template)
https://github.com/thuyencode/nextjs-step-boilerplate
nextjs nextjs-template
Last synced: 11 months ago
JSON representation
Next.js STEP Boilderplate (Personal template)
- Host: GitHub
- URL: https://github.com/thuyencode/nextjs-step-boilerplate
- Owner: thuyencode
- Created: 2023-11-11T11:46:04.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-11T12:02:00.000Z (over 2 years ago)
- Last Synced: 2025-01-25T22:58:36.791Z (about 1 year ago)
- Topics: nextjs, nextjs-template
- Language: TypeScript
- Homepage: https://nextjs-step-boilerplate.vercel.app
- Size: 86.9 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Next.js **STEP** Boilderplate
It's my personal Next.js template and **STEP** stands for:
- [**StandardJS**](https://standardjs.com/rules): The standard JavaScript rules
- [**Tailwind CSS**](https://tailwindcss.com): The popular utility-first CSS framework
- [**ESLint**](https://eslint.org): The popular JavaScript/TypeScript linter
- [**Prettier**](https://prettier.io): The popular opinionated code formatter
It also includes some workspace settings and recommended extensions for Visual Studio Code.
## Getting Started
First, create a new project based on this template:
```bash
npx create-next-app -e https://github.com/thuyencode/nextjs-step-boilerplate
# or
bun create github.com/thuyencode/nextjs-step-boilerplate []
```
[More detail info for Bun.](https://bun.sh/docs/cli/bun-create#from-github)
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
## Remove boilderplates
You can remove assets inside `public` folder, settings inside `nextjs-step-boilerplate.code-workspace` file, reset [Tailwind CSS settings](https://tailwindcss.com/docs/guides/nextjs) and change code inside `app/page.tsx` and remove this NPM package:
```bash
npm r lucide-react
# or
bun r lucide-react
```
## 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!