
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.
@repositive/hapi-route-loader
Advanced tools
Load hapi routes into the hapi router from a folder
How to use
First define your routes in any folder you like. Your route module must comply with the route schema definition for the module to be loaded:
export interface RouteConfiguration {
path: string;
method: HTTP_METHODS_PARTIAL | '*' | (HTTP_METHODS_PARTIAL | '*')[];
vhost?: string;
handler?: string | RouteHandler | RouteHandlerPlugins;
config?: RouteAdditionalConfigurationOptions | ((server: Server) => RouteAdditionalConfigurationOptions);
}
An example of a route:
/* /src/routes/hello.ts */
export const method = 'get';
export const path = '/';
export function handler(req: any, rep: any) {
rep('Hello World');
}
Then load your routes with the plugin:
import { Server } from 'hapi';
import { promisify } from 'bluebird';
import routeLoader from '@repositive/hapi-route-loader';
async function startApi() {
const server = new Server();
const register: any = promisify(server.register, {context: server});
const start: any = promisify(server.start, {context: server});
server.connection({
port: 3000
});
await register({
register: routeLoader,
options: {
/**
* match needs to point to the compiled js files that you want to load.
*/
match: `dist/routes/**/*.js`
}
});
await start();
console.log('API initialized');
}
Notes
The repository has git hooks on precommit
and prepush
. You need to pass the linting criteria before commit and the test and coverage criteria before push. The test requirements are 80% overall.
FAQs
Load hapi routes into the hapi router from a folder
The npm package @repositive/hapi-route-loader receives a total of 0 weekly downloads. As such, @repositive/hapi-route-loader popularity was classified as not popular.
We found that @repositive/hapi-route-loader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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.