
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
vokativ-js
Advanced tools
This is a JavaScript port of PHP Vocative case library for Serbian language written by Nemanja Avramovic.
Original idea and PHP implementation can be found at Vokativ.
npm install vokativ-js
Optionally you can add --save flag to update package.json dependency list
var Vocative = require("vokativ-js").Vocative;
var v = new Vocative();
v.make("Vuk").then((vocative) => {
console.log(vocative);
});
var Vocative = require("vokativ-js").Vocative;
async function demo() {
var v = new Vocative();
let name = await v.make("Vuk");
console.log(name);
}
demo();
import { Vocative } from "vokativ-js";
let v = new Vocative();
v.make("Vuk").then((vocative) => {
console.log(vocative);
});
import { Vocative } from "vokativ-js";
let v = new Vocative();
console.log(v.call("Vuk"));
Due to significant similarity, this library should also work just fine with former Yugoslav languages such as Croatian, Bosnian, Montenegrin, but if there are any rules that were missed feel free to contact me or make a pull request.
FAQs
Port of PHP Vocative library for Serbian language
The npm package vokativ-js receives a total of 10 weekly downloads. As such, vokativ-js popularity was classified as not popular.
We found that vokativ-js 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
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.

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