misp
Node.js client for MISP (Malware Information Sharing Platform) API.
The library is built in TypeScript and is compatible with both CommonJS and ES Modules.
This is a work in progress project and implements just a few resources for now.
Installation
npm install misp
Usage
const { Client } = require('misp');
const client = new Client('https://misp.example.com', 'your-api-key');
client.events.list().then((events) => {
console.log(events);
});
Roadmap
License
This project is licensed under the MIT License. See the LICENSE file for more details.