
Security News
PolinRider: North Korea-Linked Supply Chain Campaign Expands Across Open Source Ecosystems
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.
create-sky-app
Advanced tools
Scaffold a new Sky framework project in one command.
bunx create-sky-app my-app
bunx create-sky-app <project-name> [--no-install]
| Argument | Description |
|---|---|
<project-name> | Name for the new project directory. Must match [a-z0-9][a-z0-9._-]* (npm package naming rules). |
--no-install | Skip running bun install after scaffolding. |
-h, --help | Print usage and exit. |
<project-name>/
├── package.json # sky-framework dependency, build/dev scripts
├── tsconfig.json # strict ESNext, Bun types
├── sky.toml # gateway config (listen, worker, build sources)
├── index.ts # worker entry point — imports services, calls startServer()
├── src/
│ └── services/
│ └── hello.ts # example @Service with a POST /hello handler
└── .gitignore
sky.tomlversion = "1"
[listen]
address = "0.0.0.0:8080"
body_limit = "1mb"
[logging]
format = "pretty"
level = "info"
[worker]
bun_path = "bun"
worker_script = "./index.ts"
worker_version = "0.1.0"
readiness_timeout = "10s"
shutdown_grace = "5s"
manifest_path = "./sky-manifest.json"
[build]
sources = ["./src/services"]
src/services/hello.tsimport { Service, Handler, ZodBody } from "sky-framework/decorators";
import { z } from "zod";
const HelloSchema = z.object({ name: z.string() });
@Service({ lifetime: "scoped" })
export class HelloService {
@Handler({ method: "POST", path: "/hello", extract: { body: ZodBody(HelloSchema) } })
async hello({ body }: { body: z.infer<typeof HelloSchema> }) {
return { message: `Hello, ${body.name}!` };
}
}
cd my-app
bun run build # emit sky-manifest.json
# Download the gateway binary from GitHub Releases and run it:
./sky-gateway --config sky.toml
# Or use Docker:
docker run --rm -v "$(pwd)":/app -p 8080:8080 ghcr.io/sky-framework/sky:latest
Test your service:
curl -X POST http://localhost:8080/hello \
-H "Content-Type: application/json" \
-d '{"name": "World"}'
# → {"message":"Hello, World!"}
If you are working inside the Sky monorepo itself, run the scaffolder directly:
bun run src/index.ts my-app
FAQs
Create a new Sky framework project
The npm package create-sky-app receives a total of 8 weekly downloads. As such, create-sky-app popularity was classified as not popular.
We found that create-sky-app demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.

Security News
Open source attacks are accelerating as AI coding agents pull in dependencies faster, with less human review.

Research
/Security News
Malicious Chrome and Firefox extensions posed as free VPNs while stealing clipboard data through later extension updates.