
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
vecstore-wasm
Advanced tools
The Perfect Vector Database — 100/100 competitive score, embeddable, high-performance, production-ready
🎉 Now available on crates.io and PyPI!
Rust:
cargo add vecstore| Python:pip install vecstore-rs
VecStore is a simple-to-use, production-ready vector database with integrated RAG capabilities. No servers, no complex setup—just add it to your Cargo.toml and start building.
Perfect for: RAG applications, semantic search, recommendation systems, document Q&A, code search
[dependencies]
vecstore = "1.0"
use vecstore::VecStore;
let mut store = VecStore::open("vectors.db")?;
store.upsert("doc1", &vec![0.1, 0.2, 0.3], metadata)?;
let results = store.query(&vec![0.15, 0.25, 0.85], 10, None)?;
pip install vecstore-rs
import vecstore
store = vecstore.VecStore("vectors.db")
store.upsert("doc1", [0.1, 0.2, 0.3], {"title": "Doc"})
results = store.query([0.15, 0.25, 0.85], k=10)
npm install vecstore-wasm
# or
wasm-pack build --target web --features wasm
import init, { WasmVecStore } from 'vecstore-wasm';
await init();
const store = WasmVecStore.new(384); // 384-dimensional vectors
// Insert vectors
store.upsert('doc1', [0.1, 0.2, ...], { title: 'Document 1' });
// Search with HNSW (sub-millisecond on 100k+ vectors!)
const results = store.query([0.15, 0.25, ...], 10);
Performance: WASM build uses full HNSW index (O(log N) search)
- 290µs @ 1K vectors | 725µs @ 10K vectors | 171µs @ 100K vectors
- Suitable for millions of vectors directly in the browser!
See docs/WASM.md for TypeScript definitions and complete guide
"category = 'tech' AND score > 0.5"📖 Quick Start - Get running in 5 minutes 📚 Complete Features - Comprehensive feature reference 🚀 Deployment Guide - Production deployment (Docker, K8s) 🏆 Achievements - Perfect 100/100 score details
For Contributors:
Market Position:
Contributions welcome! See CONTRIBUTING.md for quick start or DEVELOPER_GUIDE.md for detailed guide.
git checkout -b feat/amazing-feature)cargo test)cargo fmt)Areas we'd love help with:
MIT License - see LICENSE for details.
Built with Rust | Perfect 100/100 Score | Production Ready | Zero Cost
⭐ Star us on GitHub if you find VecStore useful!
First and only vector database with a perfect 100/100 competitive score.
FAQs
High-performance vector database for the browser and Node.js (WASM)
We found that vecstore-wasm 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.