New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

create-swiftjs-app

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-swiftjs-app

Scaffold a new SwiftJS application

latest
npmnpm
Version
0.8.2
Version published
Maintainers
1
Created
Source

create-swiftjs-app

The easiest way to get started with SwiftJS.

npm version License: MIT

Quick Start

Run the command and follow the interactive prompts:

npx create-swiftjs-app my-app

Or using npm init:

npm init swiftjs-app my-app

Templates

We provide several templates to get you started quickly:

🚀 Basic API

A minimal setup with a simple route handler. Perfect for learning the basics or building small microservices.

npx create-swiftjs-app my-app --template basic

A scalable structure using file-based routing convention (*.get.ts, *.post.ts). Includes validation, error handling, and structured organization.

npx create-swiftjs-app my-app --template file-router

⚡ AWS Lambda

A serverless-ready setup pre-configured for deployment to AWS Lambda using the SwiftJS Lambda adapter.

npx create-swiftjs-app my-app --template lambda

Features for All Templates

  • TypeScript: Fully typed codebase out of the box.
  • Modern Tooling: Fast builds and dev server with esbuild and tsx.
  • Linting & Formatting: Configured with ESLint and Prettier.
  • Git Ready: Automatically initializes a git repository.

Post-Installation

Once your project is created:

  • Navigate to the directory:

    cd my-app
    
  • Install dependencies:

    npm install
    
  • Start the dev server:

    npm run dev
    

Open http://localhost:3000 to see your app running.

License

MIT © AshAvi

Keywords

swiftjs

FAQs

Package last updated on 02 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts