
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@softwarecitadel/adonisjs-girouette
Advanced tools
Girouette is a AdonisJS package providing decorators to handle routing.
Girouette is a AdonisJS package providing decorators to handle routing.
npm install @softwarecitadel/adonisjs-girouette
node ace configure @softwarecitadel/adonisjs-girouette
// CustomersController.ts
import { Get, Post, Patch, Delete, Middleware } from "@ioc:SoftwareCitadel/Girouette"
export default class CustomersController {
@Get("/customers", "customers.index")
public async index(/* ... */) {
// ...
}
@Get("/customers/create", "customers.create")
@Middleware("auth")
public async create(/* ... */) {
// ...
}
@Post("/customers", "customers.store")
@Middleware("auth")
public async store(/* ... */) {
// ...
}
@Get("/customers/:id", "customers.show")
@Where("id", /^[0-9]+$/)
public async show(/* ... */) {
// ...
}
@Get("/customers/:id/edit", "customers.edit")
@Where("id", /^[0-9]+$/)
@Middleware("auth")
public async edit(/* ... */) {
// ...
}
@Patch("/customers/:id", "customers.update")
@Where("id", /^[0-9]+$/)
@Middleware("auth")
public async update(/* ... */) {
// ...
}
@Delete("/customers/:id", "customers.destroy")
@Where("id", /^[0-9]+$/)
@Middleware("auth")
public async destroy(/* ... */) {
// ...
}
}
// CustomersController.ts
import { Resource } from "@ioc:SoftwareCitadel/Girouette"
@Resource("/customers", "customers", {"*": "auth"})
export default class CustomersController {
public async index(/* ... */) {
// ...
}
public async create(/* ... */) {
// ...
}
public async store(/* ... */) {
// ...
}
public async show(/* ... */) {
// ...
}
public async edit(/* ... */) {
// ...
}
public async update(/* ... */) {
// ...
}
public async destroy(/* ... */) {
// ...
}
}
You can also create a resource that is API only.
// CustomersController.ts
import { ApiOnly, Resource } from "@ioc:SoftwareCitadel/Girouette"
@Resource("/users", "users")
@ApiOnly()
export default class CustomersController {
// ...
}
You can restrict specific methods using the @Except
decorator.
// CustomersController.ts
import { Except, Resource } from "@ioc:SoftwareCitadel/Girouette"
@Resource("/users", "users")
@Except(["store", "update", "destroy"])
export default class CustomersController {
// ...
}
The opposite of @Except
decorator is the @Only
decorator which can be used to register only the methods you want.
// CustomersController.ts
import { Only, Resource } from "@ioc:SoftwareCitadel/Girouette"
@Resource("/users", "users")
@Only(["index", "show"])
export default class CustomersController {
// ...
}
FAQs
Girouette is a AdonisJS package providing decorators to handle routing.
The npm package @softwarecitadel/adonisjs-girouette receives a total of 0 weekly downloads. As such, @softwarecitadel/adonisjs-girouette popularity was classified as not popular.
We found that @softwarecitadel/adonisjs-girouette 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.