
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@corva/node-sdk
Advanced tools
Corva node-sdk is a framework for building Corva DevCenter apps.
With npm (bundled with NodeJs, see docs):
$ npm i @corva/node-sdk
With yarn (docs):
$ yarn add @corva/node-sdk
With pnpm (docs):
$ pnpm add @corva/node-sdk
A minimal app should export a handler that matches one defined in your manifest.json:
const { Corva } = require('@corva/node-sdk');
exports.handler = new Corva().task((event) => console.log(event));
For details on the app types, see App types.
There are the following app types that you can build:
Stream & scheduled apps can be followed. Followable apps must produce data to trigger the chain reaction of apps' runs.
There are the following possible ways to make the app produce the data:
CorvaDataSource.produceMessages for details.Dataset.createEntriesAndProduceMessages for detailsTo implement an app with node-sdk, you have to write a handler function that accepts two arguments:
event - an event itself, see Events;context - helpers that are bound to app execution's context, see Context.const handler = (event, context) => {
console.log(event, context);
}
There are following types of events that match the related app types:
Context provides the next functionality:
cache - convenient methods to work with the state; see State class. Not available for task apps;api - helper to interact with Corva API (and make any other generic request as well); see Api;logger - Logger instance;
secrets - the application's sensitive data (see DevCenter docs, usage example, testing);config - some basic info about app invoke.FAQs
Node.js SDK to build corva.ai apps
The npm package @corva/node-sdk receives a total of 35 weekly downloads. As such, @corva/node-sdk popularity was classified as not popular.
We found that @corva/node-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 14 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.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.