🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@blue.ts/create

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@blue.ts/create

Scaffold a new [blue.ts](https://github.com/jjgsif/blue.ts) project interactively.

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

create-blue

Scaffold a new blue.ts project interactively.

Usage

# bun
bunx create-blue

# npm
npx create-blue

# deno
deno run npm:create-blue

The CLI will prompt you for:

  • Project name — directory to create
  • Runtime — Bun, Node.js, or Deno
  • Optional packages — any combination of @blue.ts/auth, @blue.ts/logging, @blue.ts/middleware
  • Auth strategies (if auth is selected) — JWT, Session, API Key, Basic Auth

Generated project structure

my-app/
├── index.ts              # Entry point — starts the server
├── package.json
├── tsconfig.json
└── src/
    ├── app.ts            # App wiring — providers, middleware, routes
    └── handlers/
        └── IndexHandler.ts

Getting started after scaffolding

Bun

cd my-app && bun install && bun run dev

Node.js

cd my-app && npm install && npm run dev

Deno

cd my-app && deno run --watch --allow-net index.ts

Repository

github.com/jjgsif/blue.ts

FAQs

Package last updated on 10 Apr 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