https://github.com/eggheadio/scriptkit.com
https://github.com/eggheadio/scriptkit.com
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eggheadio/scriptkit.com
- Owner: eggheadio
- Created: 2020-12-14T21:44:17.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-03-30T18:58:15.000Z (about 3 years ago)
- Last Synced: 2025-06-20T10:55:27.310Z (12 months ago)
- Language: TypeScript
- Homepage: https://scriptkit.com
- Size: 8.3 MB
- Stars: 13
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is an opinonated Next.js starter project that makes it relatively simple to spin up a new project.
## Getting Started
First, run the development server:
```bash
yarn dev
```
If you'd like serverless function support:
```bash
vercel dev
```
I'm personally in the "just do Next.js the Vercel way because it gives me modern best practices without a lot of friction" but if you've got other preferences you probably know how to manage them anyway. 🤪
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `src/pages/index.js`. The page auto-updates as you edit the file.
You can also add mdx files in `src/pages/` and they will be presented at the cooresponding route.
Tailwind and Emotion are available for styling using utility classes and css-in-js respectively.
Testing is facilitated through React Testing Library and Jest.
`next-seo` and `next-sitemap` are doing their jobs very well. Be sure to update `/next-sitemap.js` and `/next-seo.json` with your information!