
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
@techjs/http
Advanced tools
Http | TechJS
The TypeScript REST framework build on the TechJS core library.
This is a TypeScript module available through NPM.
$ npm install --save @techjs/http
The TechJS framework aims to provide a structured input event listener pattern by enforcing the principle of separation of concerns. The result is a clearly defined routes, controllers, and services. Through the power of object oriented programming, the @techjs/core library can be extended to provide a familiar interface between HTTP events and other application-layer input protocols, like event bus messages.
You wil need to start by setting up a basic TypeScript project. Initialize npm. Create a tsconfig.json file and configure it as you see fit. You will also need to install the following modules:
Create this basic directory structure (UNIX)
$ mkdir -p src/{services,controllers}
Once the project is setup and the directory structure is build, continue by creating a ping service
// src/services/ping-service.ts
export class PingService {
public async ping(): Promise<string> {
return "Pong";
}
}
Now create a ping controller
// src/controllers/ping.controller.ts
import { HttpController } from "@techjs/http";
import { Resolve } from "tsnode-di";
import { PingService } from "../services/ping-service";
export class PingController extends HttpController {
@Resolve(PingService)
private ping_service!: PingService;
public async ping(): Promise<void> {
try {
const response: string = await this.ping_service.ping();
this.res.send(response);
} catch (e) {
console.error(e);
this.res.sendStatus(500);
}
}
}
Add a routes file with a /ping
route
// src/routes.ts
import { HttpRoute } from "@techjs/http";
// controllers
import { PingController } from "./controllers/ping.controller";
// routes
export const routes: Array<HttpRoute<any>> = [
new HttpRoute("/ping", "get", PingController, "ping"),
];
And create an entry point
import { HttpRouter } from '@techjs/http';
import * as express from 'express';
import * as cors from 'cors';
import { routes } from './routes';
// create an express app
const app = express();
// add your express middleware here
app.use(cors());
// initialize a TechJS HttpRouter instance
// with your routes and pass the express
// instance
const router = new HttpRouter(routes);
router.init(app);
// bind the express instance to a port
app.listen(3000);
Your project structure should look, at a minimum, like this
.
āāā package.json
āāā src
āĀ Ā āāā controllers
āĀ Ā āĀ Ā āāā ping.controller.ts
āĀ Ā āāā index.ts
āĀ Ā āāā routes.ts
āĀ Ā āāā services
āĀ Ā āāā ping-service.ts
āāā tsconfig.json
Use TypeScript to transpile this into Node, and then run it. You should have an application running on port 3000 that responds to GET requests on the /ping
route with a "Pong"
response.
FAQs
Http | TechJS
The npm package @techjs/http receives a total of 2 weekly downloads. As such, @techjs/http popularity was classified as not popular.
We found that @techjs/http demonstrated a not healthy version release cadence and project activity because the last version was released 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600Ć faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.