Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raflymln/nextjs-template
A template for your new NextJS project that equipped with TailwindCSS, Linter, and Prisma
https://github.com/raflymln/nextjs-template
nextjs tailwind tailwindcss typescript vercel
Last synced: about 3 hours ago
JSON representation
A template for your new NextJS project that equipped with TailwindCSS, Linter, and Prisma
- Host: GitHub
- URL: https://github.com/raflymln/nextjs-template
- Owner: raflymln
- License: mit
- Created: 2022-05-16T16:05:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-15T13:39:37.000Z (6 months ago)
- Last Synced: 2024-05-16T03:02:43.741Z (6 months ago)
- Topics: nextjs, tailwind, tailwindcss, typescript, vercel
- Language: JavaScript
- Homepage:
- Size: 447 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Next.js Template Repository
This repository serves as a Next.js template equipped with preconfigured settings and options for rapid development and code consistency. It is intended to be used as a starting point for new projects.
## Features
- Next.js 13: A popular React framework for building server-rendered applications.
- Tailwind CSS: A utility-first CSS framework for rapid UI development.
- `@tailwindcss/line-clamp`: Plugin for adding line clamp utilities to truncate text.
- `@tailwindcss/typography`: Plugin for styling typographic elements.
- ESLint: A pluggable JavaScript linter for identifying and reporting code quality issues.
- Preconfigured lint rules for maintaining code consistency and best practices.
- Prettier: An opinionated code formatter to enforce consistent code styling.
- Prisma: A modern database toolkit for working with databases in Node.js.## Getting Started
1. Clone the repository to your local machine, and start the server by running the following commands:
```bash
yarn install
# or
npm install
# or
pnpm install
```2. Run the development server:
```bash
yarn dev
# or
npm run dev
# or
pnpm run dev
```3. Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
> More information about Next.js can be found in the [Next.js documentation](https://nextjs.org/docs).
## Configuration
This template comes with some preconfigured settings and options. Feel free to modify them based on your requirements:
- ESLint rules and Prettier options can be modified in the package.json file.
- Prisma database configuration can be found in the prisma directory.## Contributing
Contributions are welcome! If you encounter any issues or have suggestions for improvements, please open an issue in this repository. If you'd like to contribute directly, feel free to submit a pull request with your changes.
## License
This template is licensed under the [MIT License](/LICENSE).