Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@tsed/common
Advanced tools
A TypeScript Framework on top of Express !
Ts.ED is a framework on top of Express to write your application with TypeScript (or in ES6). It provides a lot of decorators to write your code.
Documentation is available on https://romakita.github.io/ts-express-decorators
Examples are available on https://romakita.github.io/ts-express-decorators/#/tutorials/overview
You can get the latest release using npm:
$ npm install --save @tsed/core @tsed/common express@4 @types/express
Important! TsExpressDecorators requires Node >= 6, Express >= 4, TypeScript >= 2.0 and the
experimentalDecorators
,emitDecoratorMetadata
,types
andlib
compilation options in yourtsconfig.json
file.
{
"compilerOptions": {
"target": "es2015",
"lib": ["es2015"],
"types": ["reflect-metadata"],
"module": "commonjs",
"moduleResolution": "node",
"experimentalDecorators":true,
"emitDecoratorMetadata": true,
"sourceMap": true,
"declaration": false
},
"exclude": [
"node_modules"
]
}
TsExpressDecorators provide a ServerLoader
class to configure your
express quickly. Just create a server.ts
in your root project, declare
a new Server
class that extends ServerLoader
.
import * as Express from "express";
import {ServerLoader, ServerSettings} from "@tsed/common";
import Path = require("path");
@ServerSettings({
rootDir: Path.resolve(__dirname),
acceptMimes: ["application/json"]
})
export class Server extends ServerLoader {
/**
* This method let you configure the middleware required by your application to works.
* @returns {Server}
*/
public $onMountingMiddlewares(): void|Promise<any> {
const cookieParser = require('cookie-parser'),
bodyParser = require('body-parser'),
compress = require('compression'),
methodOverride = require('method-override');
this
.use(GlobalAcceptMimesMiddleware)
.use(cookieParser())
.use(compress({}))
.use(methodOverride())
.use(bodyParser.json())
.use(bodyParser.urlencoded({
extended: true
}));
return null;
}
public $onReady(){
console.log('Server started...');
}
public $onServerInitError(err){
console.error(err);
}
}
new Server().start();
By default ServerLoader load controllers in
${rootDir}/controllers
and mount it to/rest
endpoint.
To customize the server settings see Configure server with decorator
Create a new calendarCtrl.ts
in your controllers directory configured
previously with ServerLoader.mount()
. All controllers declared with @Controller
decorators is considered as an Express router. An Express router require a path
(here, the path is /calendars
) to expose an url on your server.
More precisely, it is a part of path, and entire exposed url depend on
the Server configuration (see ServerLoader.setEndpoint()
) and the controllers
dependencies. In this case, we haven't a dependencies and the root endpoint is set to /rest
.
So the controller's url will be http://host/rest/calendars
.
import {Controller, Get} from "@tsed/common";
import * as Express from "express";
export interface Calendar{
id: string;
name: string;
}
@Controller("/calendars")
export class CalendarCtrl {
/**
* Example of classic call. Use `@Get` for routing a request to your method.
* In this case, this route "/calendars/:id" are mounted on the "rest/" path.
*
* By default, the response is sent with status 200 and is serialized in JSON.
*
* @param request
* @param response
* @returns {{id: any, name: string}}
*/
@Get("/:id")
async get(request: Express.Request, response: Express.Response): Promise<Calendar> {
return {id: request.params.id, name: "test"};
}
@Get("/")
@ResponseView("calendars/index") // Render "calendars/index" file using Express.Response.render internal
async renderCalendars(request: Express.Request, response: Express.Response): Promise<Array<Calendar>> {
return [{id: '1', name: "test"}];
}
@Post("/")
@Authenticated()
async post(
@Required() @BodyParams("calendar") calendar: Calendar
): Promise<ICalendar> {
return new Promise((resolve: Function, reject: Function) => {
calendar.id = 1;
resolve(calendar);
});
}
@Delete("/")
@Authenticated()
async post(
@BodyParams("calendar.id") @Required() id: string
): Promise<ICalendar> {
return new Promise((resolve: Function, reject: Function) => {
calendar.id = id;
resolve(calendar);
});
}
}
To test your method, just run your server.ts
and send a http request on /rest/calendars/1
.
Note : Decorators
@Get
support dynamic pathParams (see/:id
) andRegExp
like Express API.
Please read contributing guidelines here.
Thank you to all our backers! 🙏 [Become a backer]
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]
The MIT License (MIT)
Copyright (c) 2016 - 2018 Romain Lenzotti
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
A TypeScript Framework on top of Express
The npm package @tsed/common receives a total of 14,799 weekly downloads. As such, @tsed/common popularity was classified as popular.
We found that @tsed/common 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.