Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
billomat-ts
Advanced tools
billomat-ts
is a library that allows TypeScript developers to connect to the popular online accounting software Billomat.
There's realistic mock data for the client, client property value, and invoice data types in Billomat's API. It follows that those data types are most likely to work as expected. All other data types are likely to work well though. If you want to contribute, please read our contributing guidelines.
Before you begin, ensure you have met the following requirements:
node
and npm
billomat-ts
.billomat-ts
To install billomat-ts
, simply run:
npm install billomat-ts
billomat-ts
For information on how to use billomat-ts
, have a look at this example:
import { Billomat, getBillomatApiClient } from 'billomat-ts';
import { readFileSync } from 'fs';
const config = JSON.parse(readFileSync('config.json', 'utf-8'));
const billomat = getBillomatApiClient(config);
billomat.clients.list()
.then((clients: Billomat.Client[]) => clients
.map((client: Billomat.Client) => client.name)
.map((name) => console.log(name)))
.catch(console.error);
billomat-ts
currently supports list
, get
, create
, and edit
operations on all known data types. The list
functions accept query arguments, etc.
If you want to contact me you can reach me at jrost@seibert-media.net. Also feel free to open an issue if you find a bug or have a question.
This project uses the MIT license.
FAQs
Billomat API implementation in TypeScript for use in Node.js
The npm package billomat-ts receives a total of 11 weekly downloads. As such, billomat-ts popularity was classified as not popular.
We found that billomat-ts 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.