
Research
Security News
The Landscape of Malicious Open Source Packages: 2025 Mid‑Year Threat Report
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
nutritionix-api
Advanced tools
Wrapper for the Nutritionix API (https://www.nutritionix.com)
npm i nutritionix-api
Nutritionix API key (it's free!). Go to https://developer.nutritionix.com
Allow set your APP ID and API KEY
const nutritionix = require("nutritionix-api");
const YOUR_APP_ID = ''; // Your APP ID
const YOUR_API_KEY = ''; // Your KEY
nutritionix.init(YOUR_APP_ID,YOUR_API_KEY);
Returns the nutrients for all foods in the posted query.
const nutritionix = require("nutritionix-api");
nutritionix.init(YOUR_APP_ID,YOUR_API_KEY);
nutritionix.natural.search('Apple').then(result => {
console.log(result);
});
Gets the superset of possible values used in full_nutrients array.
const nutritionix = require("nutritionix-api");
nutritionix.init(YOUR_APP_ID,YOUR_API_KEY);
nutritionix.utils.nutrients().then(result => {
console.log(result);
});
Get a food by upc
const nutritionix = require("nutritionix-api");
nutritionix.init(YOUR_APP_ID,YOUR_API_KEY);
const UPC = '025293600898'; // Replace with UPC to search
nutritionix.item.byUpc(UPC).then(result => {
console.log(result);
});
Get a food by nix_item_id
const nutritionix = require("nutritionix-api");
nutritionix.init(YOUR_APP_ID,YOUR_API_KEY);
const ID = '51c36ad997c3e69de4b0756f'; // Replace with ID to search
nutritionix.item.byId(ID).then(result => {
console.log(result);
});
FAQs
Wrapper for the Nutritionix API
The npm package nutritionix-api receives a total of 10 weekly downloads. As such, nutritionix-api popularity was classified as not popular.
We found that nutritionix-api 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
Security News
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.