Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
be-more-hapi
Advanced tools
This web API was built to demonstrate some of the hapi features and functionality. It was part of a talk given at Asyncjs on the 10 October 2013. The API is a simple calculator that allows you to add, subtract, divide or multiple two numbers. To demonstrate a more common set of API calls I also added methods to store sums into a mongodb database.
The project makes use of a hapi.js plugin hapi-swagger which self documents the API using the Swagger UI interface. It provides simple forms which developers can use to quickly interact with your API and learn how it works. The forms and documentation are built from the standard hapi.js routes object.
You first need to install node.js and mongodb if you do not already have them on your computer. Then download the code from github:
$ git clone https://github.com/glennjones/be-more-hapi.git
or
$ curl -L https://github.com/glennjones/be-more-hapi/tarball/master | tar zx
$ cd be-more-hapi
$ npm install
$ mongod
$ node bin/be-more-hapi
http://localhost:3003
HAPI-Swagger plugin allows you tag API enpoints into groups that can be displayed independently. The reduced example page http://localhost:3000/reduced demostrates this.
All the sum endpoints are http PUT requests. Where the two numbers are the last two fragments of the URL:
http://localhost:3000/sum/multiple/5/6
If the sum is completed without error the response is also a simple format:
{
"equals": 30
}
The error format always has 3 properties; code, error and message. There is an optional fourth property validation which is added if the input is in the incorrect format.
{
"code": 400,
"error": "Bad Request",
"message": "the value of b must be a number",
"validation": {
"source": "path",
"keys": [
"b"
]
}
}
The project has example integration and unit tests. To run the test within the project type the following command
$ mocha --reporter list
FAQs
A example site using HAPI to build an API
The npm package be-more-hapi receives a total of 1 weekly downloads. As such, be-more-hapi popularity was classified as not popular.
We found that be-more-hapi 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.