thiras / nextjs-typescript-gts-tailwind

Next,js template with TypeScript, gts, and TailwindCSS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Next.js + Typescript + gts + TailwindCSS

This is a boilerplate project that combines Next.js, TypeScript, gts, TailwindCSS, and (optionally) husky.

Deploy your own

Deploy the example using Vercel:

Deploy with Vercel

How to use it?

Execute create-next-app with npm or Yarn to bootstrap the example:

npx create-next-app --example https://github.com/thiras/nextjs-typescript-gts-tailwind
# or
yarn create next-app --example https://github.com/thiras/nextjs-typescript-gts-tailwind

Deploy it to the cloud with Vercel (Documentation).

Notes

This example shows how to integrate the TypeScript type system into Next.js. Since TypeScript is supported out of the box with Next.js, all we have to do is to install TypeScript.

npm install --save-dev typescript

To enable TypeScript's features, we install the type declarations for React and Node.

npm install --save-dev @types/react @types/react-dom @types/node

When we run next dev the next time, Next.js will start looking for any .ts or .tsx files in our project and builds it. It even automatically creates a tsconfig.json file for our project with the recommended settings.

Next.js has built-in TypeScript declarations, so we'll get autocompletion for Next.js' modules straight away.

A type-check script is also added to package.json, which runs TypeScript's tsc CLI in noEmit mode to run type-checking separately. You can then include this, for example, in your test scripts.

About

Next,js template with TypeScript, gts, and TailwindCSS


Languages

Language:TypeScript 92.8%Language:JavaScript 5.5%Language:Shell 0.9%Language:CSS 0.9%