
Company News
Andrew Becherer Joins Socket as Chief Information Security Officer
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.
@structa/cli
Advanced tools
A TypeScript-like API framework built with Rust. Write .structa files that compile to JavaScript.
██████╗ ███████╗███████╗██╗███╗ ██╗██╗ ██╗███████╗
██╔══██╗██╔════╝██╔════╝██║████╗ ██║██║ ██║██╔════╝
██████╔╝█████╗ █████╗ ██║██╔██╗ ██║██║ ██║███████╗
██╔══██╗██╔══╝ ██╔══╝ ██║██║╚██╗██║██║ ██║╚════██║
██║ ██║███████╗███████╗██║██║ ╚████║╚██████╔╝███████║
╚═╝ ╚═╝╚══════╝╚══════╝╚═╝╚═╝ ╚═══╝ ╚═════╝ ╚══════╝
.structa files# Build CLI
cargo build --release
# Create project
structa init my-api
cd my-api
# Install dependencies
structa install
# Run development server
structa dev --port 3000
structa init <name> # Initialize new project
structa dev [--port] # Run development server
structa build [--release] # Build project
structa install # Install dependencies
structa add <package> # Add npm package
structa remove <package> # Remove package
structa generate <type> <name> # Generate code
structa orm <command> # Database operations
| Package | Version | Description |
|---|---|---|
@structa/http | 0.8.1 | HTTP server with routing and middleware |
@structa/orm | 0.8.1 | Database ORM (MySQL, PostgreSQL, SQLite) |
@structa/validation | 0.8.1 | Input validation with decorators |
@structa/cache | 0.8.1 | Caching (Memory, Redis, File) |
@structa/queue | 0.8.1 | Job queues with retry support |
@structa/mail | 0.8.1 | Email sending (SMTP, SendGrid) |
@structa/swagger | 0.8.1 | OpenAPI documentation |
@structa/websockets | 0.8.1 | WebSocket support |
@structa/graphql | 0.8.1 | GraphQL integration |
@structa/testing | 0.8.1 | Testing utilities |
controller UserController {
path: "/users"
@Inject("UserService")
userService
@Get("/")
async getAll() {
return await this.userService.findAll()
}
@Get("/:id")
async getById(id) {
return await this.userService.findById(id)
}
@Post("/")
async create(data) {
return await this.userService.create(data)
}
@Delete("/:id")
async delete(id) {
return await this.userService.delete(id)
}
}
service UserService {
@Inject("UserRepository")
userRepo
async findAll() {
return await this.userRepo.findAll()
}
async findById(id) {
return await this.userRepo.findById(id)
}
async create(data) {
return await this.userRepo.save(data)
}
async delete(id) {
return await this.userRepo.delete(id)
}
}
repository UserRepository {
async findAll() {
return [
{ id: 1, name: "John", email: "john@example.com" },
{ id: 2, name: "Jane", email: "jane@example.com" }
]
}
async findById(id) {
return { id, name: "John", email: "john@example.com" }
}
async save(data) {
return { id: Date.now(), ...data }
}
async delete(id) {
return { success: true }
}
}
┌─────────────────────────────────────────────────────────┐
│ Structa CLI │
│ init | dev | build | generate | install | orm │
└─────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────┐
│ Rust Compiler │
│ ┌─────────┐ ┌─────────┐ ┌───────────────────┐ │
│ │ Lexer │ → │ Parser │ → │ Code Generator │ │
│ └─────────┘ └─────────┘ └───────────────────┘ │
└─────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────┐
│ JavaScript Output (Runtime) │
│ Controllers, Services, Repositories, DTOs │
└─────────────────────────────────────────────────────────┘
structa/
├── crates/
│ └── structa/ # CLI (commands: structa init, structa dev, etc.)
├── packages/ # npm packages
│ ├── http/
│ ├── orm/
│ ├── validation/
│ ├── cache/
│ ├── queue/
│ ├── mail/
│ ├── swagger/
│ ├── websockets/
│ ├── graphql/
│ └── testing/
└── docs/ # Documentation
MIT
FAQs
Structa Framework CLI - TypeScript API framework compiler
We found that @structa/cli 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.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.

Company News
Replit is integrating Socket Firewall into its AI-powered development experience to help protect builders from malicious open source packages.

Security News
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.