Skip to content

Latest commit

 

History

History

nextjs

Typescript NextJS FullStack App

Nextjs 14 SSR app using neurelo as a data source.

Getting started

  • Check the docs for Neurelo-SDK here
  • You can use any nextjs example by providing options for create-next-app
npx create-next-app -e https://github.com/neurelo-public/neurelo-sdk-examples/tree/main/typescript/nextjs
# or
yarn create next-app -e https://github.com/neurelo-public/neurelo-sdk-examples/tree/main/typescript/nextjs
# or
pnpm create next-app -e https://github.com/neurelo-public/neurelo-sdk-examples/tree/main/typescript/nextjs

Note: You can view all the available options for create-next-app by running npx create-next-app --help or nextjs documentation reference

Starting server

# Fill in .env.local with your neurelo credentials
cp .env.example .env.local

npm install
npm run format
npm run dev