
Product
Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
@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.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.