https://github.com/make-software/csprclick-nextjs-template
CSPR.click template based on nextJS and SSR
https://github.com/make-software/csprclick-nextjs-template
Last synced: about 1 month ago
JSON representation
CSPR.click template based on nextJS and SSR
- Host: GitHub
- URL: https://github.com/make-software/csprclick-nextjs-template
- Owner: make-software
- License: apache-2.0
- Created: 2024-07-29T10:27:12.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2026-05-14T10:46:41.000Z (about 1 month ago)
- Last Synced: 2026-05-14T12:36:14.439Z (about 1 month ago)
- Language: TypeScript
- Homepage:
- Size: 811 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CSPR.click Integration with Next.js App Router
This project demonstrates how to integrate [CSPR.click](https://cspr.click/) with the Next.js app router.
## Getting Started
1. **Create a New Project Using This Template**:
```bash
npx create-next-app@latest -e https://github.com/make-software/csprclick-nextjs-template
```
2. **Navigate to Your Project Directory**:
```bash
cd my-app
```
Node.js version >= v20.9.0
```bash
npm run dev
```
3. **Install Dependencies** (if not already installed during project creation):
```bash
npm install --legacy-peer-deps
# or
yarn install
```
4. **Run the Development Server**:
```bash
npm run dev
# or
yarn dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
## CSPR.click Integration
For detailed information about integrating CSPR.click with your Next.js app, visit the [CSPR.click website](https://cspr.click/).
Thanks to [thebadking](https://github.com/thebadking) and [@Charlie85270](https://github.com/Charlie85270) for this contribution!
## Deployment
Deploy your Next.js project using platforms like Vercel, Netlify, or any other hosting provider. Follow their specific instructions for deployment.
---