NextWeb.js

NextWeb.js

  • Docs
  • GitHub

›Getting Started

Getting Started

  • Getting Started
  • Folder Structure
  • Create a New Page
  • Navigate Between Pages

App

  • Environment Variables
  • Module Alias
  • Routing
  • Context
  • Store
  • Authentication

Page

  • Layout
  • Meta
  • Breadcrumb
  • Stats
  • Restricted Pages

Data Fetching

  • Repositories & Services
  • Server-Side Fetching
  • Client-Side Fetching
  • Error Handling
  • Custom Error

Styling

  • Local Styles
  • Global Styles
  • Grids
  • Style Helpers
  • Fonts
  • Icons

Deployment

  • Deployment

Getting Started

NextWeb.js is an opinionated framework for universal server-rendered React applications that built on top of Next.js. The main purpose is to get your job done quickly and make it maintainable. Actually, it is Next.js with built-in utilities and recipes that make you focus on your work, not how to write good code.

Setup

Install dependencies:

npm install

Development

Start the dev server:

npm run dev

Production Deployment

To deploy, run the following commands:

npm run build
npm start
Folder Structure →
  • Setup
  • Development
  • Production Deployment