Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (create-jexts) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
jexts
jexts is a Node.js CLI tool to quickly scaffold Express backend projects in JavaScript or TypeScript. It simplifies project setup so you can start coding immediately.
Features
- Generate a ready-to-use Express backend in JS or TS
- Pre-configured folder structure with templates
- Works with
npm createfor fast project initialization
Installation
You don’t need to install globally. Use npm create:
npm create jexts@latestFollow the prompts to select JavaScript or TypeScript and project name.
Usage
After creating your project, navigate to it:
cd <project-name>Run development server:
# For JS projects
npm run dev
# For TS projects
npm run devBuild and start (for TS projects):
npm run build
npm startProject Structure
A typical project looks like:
project-name/
├─ src/ # Source files (TS or JS)
├─ dist/ # Compiled files (TS only)
├─ .gitignore
├─ node_modules/
├─ package.json
└─ tsconfig.json # Only for TS projectsContributing
Contributions are welcome! Open an issue or pull request for improvements or fixes.
License
MIT License