
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.
vector-object
Advanced tools
A vector class supporting vector operations in n-dimensional space. Useful for word vectors calculation.
This is a n-dimensional vector implementation in javascript. A vector can be created using json objects, with the object keys as the components. It is useful for cases like word vector calculations. For example, calculating the cosine similarity of two word vectors.
The advantage of using json object over array to define a vector is that we do not need the two vectors have the same number of components for calculations. Take the following example:
Using this library:
const a = new Vector({ react: 1, nodejs: 2, angular: 1 });
const b = new Vector({ nodejs: 2, marko: 3, nextjs: 2 });
const similarity = a.getCosineSimilarity(b);
Compare what if using array (Note: this is not supported in this library):
// assume index 0: react, index 1: nodejs, index 2: angular, index 3: marko, index 4: nextjs
const a = new Vector([1, 2, 1, 0, 0]);
const b = new Vector([0, 2, 0, 3, 2]);
const similarity = a.getCosineSimilarity(b);
It is much easier to define vector in object than array as we need to pad much zeros into the array if two vectors have very few overlapping components. The vectors can be large but sparse if we are doing word analyzation.
npm install vector-object
And then import the Vector class
const Vector = require('vector-object');
Upgrade dependency to fix security alerts
Fix the issue if the word vector contains words which are same as the instance methods
The vector operations now would update the instance itself, rather than creating a new vector object. It is for better performance so less objects are created during the calculations. This is a NON-COMPATIBLE change. If you are using versions < 1.1.0, you may need rewrite a bit your code. Sorry for that 🙏🏼
create a new vector object
const a = new Vector({ x: 1, y: 2, z: 3 });
return a copy of the vector object
const a = new Vector({ x: 1, y: 2, z: 3 });
const b = a.clone();
console.log(b); // return { x: 1, y: 2, z: 3 }
return an json object of the vector
const a = new Vector({ x: 1, y: 2, z: 3 });
console.log(a.toObject()); // return { x: 1, y: 2, z: 3 }
return array of the components in the vector object
const a = new Vector({ react: 5, angular: 2, vue: 2, marko: 1 });
console.log(a.getComponents()); // return ['react', 'angular', 'vue', 'marko']
return the value of the component in the vector object
const a = new Vector({ react: 5, angular: 2, vue: 2, marko: 1 });
console.log(a.get('react')); // return 5
console.log(a.get('nextjs')); // return undefined
set the value of the component in the vector object
const a = new Vector({ react: 5, angular: 2, vue: 2, marko: 1 });
a.set('react', 10);
console.log(a); // return { react: 10, angular: 2, vue: 2, marko: 1 }
return a boolean value if the input vector is same as itself
const a = new Vector({ a: 1, b: 2, c: 3 });
const b = new Vector({ a: 1, b: 2, c: 3 });
const c = new Vector({ a: 1, b: 2 });
console.log(a.isEqual(b)); // return true
console.log(a.isEqual(c)); // return false
console.log(c.isEqual(a)); // return false
return the distance between the target vector and the vector object
const a = new Vector({ a: 1, b: 2, c: 3 });
const b = new Vector({ b: 2, c: 1, d: 2 });
const distance = a.getDistance(b);
console.log(distance); // return 3
return the length of the vector object
const a = new Vector({ a: 3, b: 4 });
const length = a.getLength();
console.log(length); // return 5
return the dot product of the input vector and the vector object
const a = new Vector({ a: 1, b: 2, c: 1 });
const b = new Vector({ b: 2, c: 2 });
const dotProduct = a.getDotProduct(b);
console.log(dotProduct); // return 6
return the cosine similarity (range from 0 to 1, the larger the more similar between the two vectors) of the input vector and the vector object
const a = new Vector({ ant: 1, bird: 2, cat: 3 });
const b = new Vector({ bird: 2, cat: 2, dog: 2 });
const similarityAA = a.getCosineSimilarity(a);
const similarityAB = a.getCosineSimilarity(b);
console.log(similarityAA); // return 1
console.log(similarityAB); // return 0.6236095644623236
normalized the vector and return itself
const a = new Vector({ a: 3, b: 4 });
a.normalize();
console.log(a); // return { a: 0.6, b: 0.8 }
perform additional with the input vector and return itself
const a = new Vector({ a: 1, b: 2 });
const b = new Vector({ b: 1, c: 2 });
a.add(b);
console.log(a); // return { a: 1, b: 3, c: 2 }
perform subtraction with the input vector and return itself
const a = new Vector({ a: 1, b: 2 });
const b = new Vector({ b: 1, c: 2 });
console.log(a); // return { a: 1, b: 0, c: -2 }
perform scalar multiplication and return itself
const a = new Vector({ a: 1, b: 2, c: 1 });
a.multiply(10);
console.log(a); // return { a: 10, b: 20, c: 10 }
perform scalar division and return itself
const a = new Vector({ a: 1, b: 2, c: 1 });
a.divide(10);
console.log(a); // return { a: 0.1, b: 0.2, c: 0.1 }
The vector calculation methods are chainable so you can write your expression in the following way:
const a = new Vector({ a: 1, b: 2, c: 1 });
const b = new Vector({ a: 2, b: 1 });
const c = new Vector({ a: 1, b: 4, d: 2 });
const v = a.clone().add(b).subtract(c).normalize();
npm install
npm run test
FAQs
A vector class supporting vector operations in n-dimensional space. Useful for word vectors calculation.
The npm package vector-object receives a total of 341 weekly downloads. As such, vector-object popularity was classified as not popular.
We found that vector-object 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.