nxt-create-page
v1.0.10
Published
CLI tool to create Next.js pages
Downloads
9
Readme
nxt-create-page
A CLI tool to quickly create Next.js pages with a standardized structure.
Installation
You can install this package globally using npm:
npm install -g nxt-create-page
For local installation:
npm install nxt-create-page
Usage
nxt create page [options] [page-name]
shorthand
nxt c p [options] [page-name]
Example
nxt create page
then select the options
or
if you are using the default options i.e typescript and src folder then run the command like this
nxt c p -y mypage
Features
- Interactively creates Next.js pages
- Supports both JavaScript (.jsx) and TypeScript (.tsx)
- Option to create pages in the src directory or root
- Automatically capitalizes the component name
- Creates a basic component structure
Options
When you run the command, you'll be prompted to:
- Specify whether you're using a src folder
- Choose between JavaScript and TypeScript
- Enter the name of your new component