
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@recipecloudapp/ingredient-parser
Advanced tools
Lightweight ingredient line parser (shared across web, cloud, iOS)
A lightweight, language-aware ingredient line parser.
It normalizes quantities (fractions, ranges, decimals), units (tsp/tablespoon/cup/etc.), and extracts ingredient names plus notes.
Built for use across Recipe Cloud’s web app, server functions, and iOS app (via JavaScriptCore).
Ships as ESM, CJS, and IIFE (global window.IngParser) for maximum compatibility.
npm i @recipecloudapp/ingredient-parser
# or: pnpm add @recipecloudapp/ingredient-parser
# or: yarn add @recipecloudapp/ingredient-parser
import { parseLine, parseLines } from '@recipecloudapp/ingredient-parser';
const node = parseLine('1/2 cup tomato sauce (no salt)');
// → {
// type: 'item',
// quantity: 0.5,
// unit: { canonical: 'cup', raw: 'cup', abbr: 'cup', display: 'cup' },
// ingredient: 'tomato sauce',
// postNote: 'no salt'
// }
Or in the browser (IIFE build):
<script src="dist/index.iife.js"></script>
<script>
const result = window.IngParser.parseLines([
'1 teaspoon oregano, optional',
'For the Quick Sauce:',
'1/2 cup tomato sauce (no salt)'
]);
console.log(result.items);
</script>
1 1/2, ½, 1–2).tsp, cda, cas, etc.).For the sauce:.© 2025 Recipe Cloud LLC. All rights reserved.
FAQs
Lightweight ingredient line parser (shared across web, cloud, iOS)
The npm package @recipecloudapp/ingredient-parser receives a total of 7 weekly downloads. As such, @recipecloudapp/ingredient-parser popularity was classified as not popular.
We found that @recipecloudapp/ingredient-parser demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.