JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q65916F
  • License MIT

Generate a complete Express + JavaScript/TypeScript backend project.

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 create for fast project initialization

    Installation

    You don’t need to install globally. Use npm create:

    npm create jexts@latest

    Follow 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 dev

    Build and start (for TS projects):

    npm run build
    npm start

    Project 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 projects

    Contributing

    Contributions are welcome! Open an issue or pull request for improvements or fixes.

    License

    MIT License