
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
hapi-api-boilerplate
Advanced tools
This project has been inspired by this boilerplate.
Run npm install as usual
npm run dev will run the server with config.dev.js settings
npm run staging will run the server with config.staging.js settings
npm run prod will run the server with config.prod.js settings
You can easily customize your Hapi server by adding the plugins you need in /server.js manifest file or in /lib/index.js.
Everything has been setup in order to avoid the need to write code to add new components to the server. Anyway, since this is a boilerplate and the loading process cannot be completely abstracted, you'll probably need to tweak various things around if you plan to use different packages for models, jobs, services, etc...
You can add your authentication strategies in /lib/config/auth.js and they will be registered automatically.
The default authentication strategy is set in /lib/index.js.
Adding a new route is a two step operation:
/lib/routes/routename.jsroutename into /lib/config/routes.jsEvery registered route is prefixed by a prefix and a version (/api/v1 is the default).
API_PREFIXand API_VERSION are defined in /lib/config/routes.js.
To add a new model, just create a new filename into /lib/models/ and it will be loaded automatically.
Adding a new job is a two step operation:
/lib/jobs/jobname.jsjobname into /lib/config/jobs.jsAdding a new service is a two step operation:
/lib/jobs/servicename.jsservicename into /lib/config/services.jshapi-chairo-api-boilerplate
├── lib
│ ├── boot # loader utils
│ ├── config # configs
│ ├── jobs # jobs
│ ├── models # models
│ ├── services # services
│ ├── routes # routes
│ └── index.js # plugins loading and registrations
│
├── test
│ ├── example-test.js
│
├── logs
│
├── server.js # server composition
├── config.js # setup ENV config
├── config.dev.js
├── config.staging.js
├── config.prod.js
├── package.json
└── README.md
FAQs
Hapi API Server Boilerplate
We found that hapi-api-boilerplate 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.

Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.

Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.