Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
KambojaJS aims to fix some problems occurs when using the old guy, like increase testability, add convention over configuration and use modern language feature like async/await decorator etc, read more http://kambojajs.com/
KambojaJS route generation system generate url using pattern below:
<namespace>/<controller>/<action>?<parameter1>=value&<parameter2>=value
Example you define controller like below
import { Controller } from "kamboja"
export namespace Api.v01
export class UserController extends Controller {
list(query:string, offset:number, limit:number){ }
}
}
Above code by default will generate a GET url below
/api/v01/user/list?query=<value>&offset=<value>&limit=<value>
Refer to controller reference for more information
For more advanced use, KambojaJS provide a convention for creating Restful API by using ApiController
Example controller below will create Restful API url for you
import { ApiController } from "kamboja"
namespace Api.V1 {
export class ItemsController extends ApiController {
//GET /api/v1/items/:id
get(id:string) { }
//GET /api/v1/items?offset=1&limit=<optional>
list(offset:number, limit=50){ }
//POST /api/v1/items
add(data){ }
//DELETE /api/v1/items/:id
delete(id:string){ }
//PUT /api/v1/items/:id
replace(id:string, data){ }
//PATCH /api/v1/items/:id
modify(id:string, data){}
}
}
Above code will generate some urls:
GET /api/v1/items/:id
GET /api/v1/items?offset=1&limit=<optional>
POST /api/v1/items
DELETE /api/v1/items/:id
PUT /api/v1/items/:id
PATCH /api/v1/items/:id
Refer to ApiController for more information
FAQs
MVC Framework powered by TypeScript
The npm package kamboja receives a total of 17 weekly downloads. As such, kamboja popularity was classified as not popular.
We found that kamboja 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.