Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Next.js starter using React-Table and Chakra UI for building powerful data tables.
Next Tabley is a Next.js starter repository that pairs React-Table v7 with Chakra UI for building data tables, scaffolded with create-next-app.
Next Tabley is a minimal Next.js application bootstrapped with create-next-app and described in its GitHub metadata as "Using React-Table and Chakra UI to create powerful table." It runs on the Next.js pages router, with the main page at pages/index.tsx and an example API route at pages/api/hello.ts. The project is a starting point for building table-heavy interfaces rather than a finished product; you edit the TypeScript React components to add your own data and table behavior.
pages directory; the main entry is pages/index.tsx, which auto-updates when you save changes during development.pages/api directory maps to /api/*, so files inside become serverless endpoints; pages/api/hello.ts provides a sample endpoint at http://localhost:3000/api/hello.index.tsx, hello.ts) with a default Next.js build.npm run dev or yarn dev to start the development server on http://localhost:3000.pages/index.tsx with a React-Table instance backed by Chakra UI components to display rows from an array or an API.pages/api to return JSON to the table, using pages/api/hello.ts as a reference for the route signature.npm run dev or yarn dev to start the development server on http://localhost:3000.pages/index.tsx to change the page; the browser auto-reloads.http://localhost:3000/api/hello, and edit pages/api/hello.ts to change the response.create-next-app base, TypeScript included, Vercel-ready, and integrates two established libraries (React-Table and Chakra UI).Run npm run dev or yarn dev in the project root, then open http://localhost:3000 with your browser.
The pages/api directory is mapped to /api/*; the sample endpoint in pages/api/hello.ts can be accessed at http://localhost:3000/api/hello.
Yes, the README describes the Vercel platform as the easiest way to deploy and links to the official Next.js deployment documentation.
No. The repository description says it uses React-Table and Chakra UI to create tables, but the README shows only the default create-next-app page, so you need to add the table component yourself.
