All Projects → RonHouben → nextjs-todo-app

RonHouben / nextjs-todo-app

Licence: other
https://nextjs-todoapp.vercel.app

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to nextjs-todo-app

personal-website
My personal website, statically generated by Next.js
Stars: ✭ 16 (-11.11%)
Mutual labels:  chakra, chakra-ui
purity-ui-dashboard
Purity UI Dashboard - Free and Open Source Chakra UI Dashboard
Stars: ✭ 253 (+1305.56%)
Mutual labels:  chakra, chakra-ui
Munche
Munche is a 🍔 food delivery android application made in Java and Kotlin using the Firebase Suite and Mapbox Map Integration.
Stars: ✭ 35 (+94.44%)
Mutual labels:  firebase-auth
ionicfirebaseauth
Exemplo de alguns tipos de autenticação com Ionic 2 e Firebase
Stars: ✭ 18 (+0%)
Mutual labels:  firebase-auth
firebase-auth-demo
Simple set up using firebase, Vue and Vuex
Stars: ✭ 22 (+22.22%)
Mutual labels:  firebase-auth
iOS-SwiftUI-Firebase-Login-Example
Complete Sign up and Sign in Process for iOS SwiftUI - using Firebase Email and Password Authentication.
Stars: ✭ 37 (+105.56%)
Mutual labels:  firebase-auth
Transact
A transaction management android app which allows you to verify records from both parties before addition.
Stars: ✭ 21 (+16.67%)
Mutual labels:  firebase-auth
firebaseauth
Firebase authentication library - a node js wrapper around the Firebase REST API
Stars: ✭ 43 (+138.89%)
Mutual labels:  firebase-auth
firebase-photos
✅ 100% Firebase-Powered Android App, Instagram Clone App
Stars: ✭ 22 (+22.22%)
Mutual labels:  firebase-auth
rn-firebase-bridge
React Native Firebase Bridge
Stars: ✭ 59 (+227.78%)
Mutual labels:  firebase-auth
capacitor-firebase-authentication
⚡️ Capacitor plugin for Firebase Authentication.
Stars: ✭ 67 (+272.22%)
Mutual labels:  firebase-auth
LetsChat
LetsChat is a Sample Messaging Android application built to demonstrate the use of Modern Android development tools - (Kotlin, Coroutines, Flow, Dagger-Hilt, Architecture Components, MVVM, Room, Testing, Coil, DataStore) and Firebase
Stars: ✭ 71 (+294.44%)
Mutual labels:  firebase-auth
app
Source code of intencje.pl website and mobile/desktop apps based on Angular, Firebase, and Capacitor.
Stars: ✭ 12 (-33.33%)
Mutual labels:  firebase-auth
andromedev
Site oficial do evento Andromedev organizado pela OpenDev UFCG
Stars: ✭ 24 (+33.33%)
Mutual labels:  chakra-ui
dev.to-clone
Dev.to clone built with Next.js, ChakraUI and dev.to api.
Stars: ✭ 65 (+261.11%)
Mutual labels:  chakra-ui
Friday
🎓 Friday - Your Personal Class Manager Assistant, It'll never let you miss another assignment deadline or upcoming test.
Stars: ✭ 67 (+272.22%)
Mutual labels:  firebase-auth
charmander
A set of libraries to make working with firebase easier in clojure
Stars: ✭ 33 (+83.33%)
Mutual labels:  firebase-auth
create-chakra-icons
Transform SVGs to React Chakra UI <Icon /> ✨
Stars: ✭ 80 (+344.44%)
Mutual labels:  chakra-ui
rescript-pulo
⚡️ [Pulo.dev] with ReScript, React, Recoil, and Chakra
Stars: ✭ 12 (-33.33%)
Mutual labels:  chakra-ui
whatsApp clone
Flutter WhatsClone (with Firebase + Clean Architecture) this app follow clean architecture proposed by our friendly Uncle Bob.
Stars: ✭ 181 (+905.56%)
Mutual labels:  firebase-auth

TypeScript Next.js example

This is a really simple project that shows the usage of Next.js with TypeScript.

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 with-typescript with-typescript-app
# or
yarn create next-app --example with-typescript with-typescript-app

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].