
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@minuscode/weezevent-client
Advanced tools
A simple READ ONLY Weezevent client for node.
Using npm:
$ npm install @minuscode/weezevent-client
Using yarn:
$ yarn add @minuscode/weezevent-client
import { Weezevent } from '@minuscode/weezevent-client';
(async function test() {
try {
const weezevent = new Weezevent({
username: 'XXX',
password: 'YYY',
api_key: 'ZZZ',
});
const events = await weezevent.events.list();
console.log(events.data);
} catch (error) {
if (error.response) {
// The request was made and the server responded with a status code
// that falls out of the range of 2xx
console.log(error.response.data);
// console.log(error.response.status);
console.log(error.response.headers);
} else if (error.request) {
// The request was made but no response was received
// `error.request` is an instance of XMLHttpRequest in the browser and an instance of
// http.ClientRequest in node.js
console.log(error.request);
} else {
// Something happened in setting up the request that triggered an Error
console.log('Error', error.message);
}
console.log(error.config);
}
})();
You can list events with:
weezevent.events.list(options?);
You can get a event with:
weezevent.events.get(id);
You can get the events categories with:
weezevent.events.categories();
You can list event tickets with:
weezevent.tickets.list(options?);
You can get a ticket stat with:
weezevent.tickets.get(event_id);
You can list participants with:
weezevent.participants.list(options?);
You can get answers from a participant with:
weezevent.participants.answers(id);
You can get dates of a event with:
weezevent.dates.list({id_event: 12345});
| Url | Status |
|---|---|
| /auth/access_token | ✅ |
| /events | ✅ |
| /event/:id/details | ✅ |
| /event/search/ | ❌ |
| /event/categories/ | ✅ |
| /dates | ✅ |
| /tickets | ✅ |
| /tickets/:id/stats | ✅ |
| /participants | ✅ |
| /participants/:id/answers | ✅ |
| /scan/settings | ❌ |
| /scan/user | ❌ |
FAQs
Weezevent API client
We found that @minuscode/weezevent-client 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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.