New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

typhoonts

Package Overview
Dependencies
Maintainers
0
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typhoonts

A lightweight and flexible TypeScript framework for building server-side applications.

  • 1.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

TyphoonTS

A robust and type-safe framework for building scalable web applications using TypeScript

Features

  • TypeScript-Only Framework
  • Decorators for Routes and Services
  • Middleware Support
  • Object Pool for Singleton Services
  • Session and Cookie Management
  • MVC Architecture
  • Dynamic Routing
  • Modular and Extensible
  • HTTP Server Creation
  • Service Injection

Installation

npm install typhoonts

Example Usage

Defining a Service

import { Service } from 'typhoonts';

@Service()
export class ExampleService {
    getExampleData() {
        return { message: 'Hello from the service!' };
    }
}

Defining a Controller

import { Controller, Get, Request, Response } from 'typhoonts';
import { ExampleService } from './services/ExampleService';
import { Inject } from 'typhoonts';

@Controller('/')
export class HomeController {
    @Inject(ExampleService)
    private exampleService!: ExampleService;

    @Get('/')
    getHome(req: Request, res: Response) {
        const data = this.exampleService.getExampleData();
        res.json(data);
    }

    @Post("/")
    save(req: Request, res: Response) {
        res.json({
            body: req.body,
            params: req.params,
            query: req.query,
        });
    }
}

Setting Up the Server

import { Server } from 'typhoonts';
import { HomeController } from './controllers/HomeController';
import { ExampleService } from './services/ExampleService';

const server = new Server({
    useBodyParser: true,
    useCookieParser: true,
    useSession: true,
    sessionOptions: { secret: 'my_secret_key' }
});

server.registerController(HomeController);

server.listen(8000, () => {
    console.log('Server is running on http://localhost:8000');
});

Dynamic URL Example

import { Controller, Get, Request, Response } from 'typhoonts';

@Controller('/users')
export class UserController {
    @Get('/:id')
    getUser(req: Request, res: Response) {
        const userId = req.params.id;
        res.send(`User ID is ${userId}`)
    }
}

Controller with @ResponseBody()

import { Controller, Get, Request, Response } from 'typhoonts';

@Controller('/users')
export class UserController {
    @Post("/")
    @ResponseBody()
    save(req: Request, res: Response) {
        return {
            body: req.body,
            params: req.params,
            query: req.query,
        };
    }
}

Controller with @ResponseBody(), @Param(), @Body(), and @Query()

import { Controller, Get, Request, Response } from 'typhoonts';

@Controller('/users')
export class UserController {
    @Put("/:id")
    @ResponseBody()
    update(
        @Param("id") id: string,
        @Body() reqBody: any,
        @Query("keyword") keyword: string
    ) {
        return {
            body: reqBody,
            params: {
                id,
            },
            query: {
                keyword,
            },
        };
    }
}

In this example, a GET request to /users/123 would respond with User ID is 123.

Middleware

Body Parser

import { bodyParser } from 'typhoonts';

// Use body parser middleware
server.use(bodyParser);
import { cookieParser } from 'typhoonts';

// Use cookie parser middleware
server.use(cookieParser);

Session

import { session } from 'typhoonts';

// Use session middleware
server.use(session({ secret: 'my_secret_key' }));

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

License

This project is licensed under the MIT License.

Keywords

FAQs

Package last updated on 14 Oct 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc