@faiss-node/native 0.1.4 โ†’ 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -16
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
6
  [![Documentation](https://img.shields.io/badge/docs-GitHub%20Pages-blue)](https://anupammaurya6767.github.io/faiss-node-native/)
7
7
 
8
- High-performance Node.js native bindings for [Facebook FAISS](https://github.com/facebookresearch/faiss) - the industry-standard vector similarity search library. Built for production-ready semantic search, RAG applications, and vector databases.
8
+ High-performance Node.js native bindings for [Facebook FAISS](https://github.com/facebookresearch/faiss) - the industry-standard vector similarity search library. Built for semantic search, RAG applications, and vector databases.
9
9
 
10
10
  ## Features
11
11
 
@@ -14,9 +14,7 @@ High-performance Node.js native bindings for [Facebook FAISS](https://github.com
14
14
  - ๐Ÿ“ฆ **Multiple Index Types** - FLAT_L2, IVF_FLAT, and HNSW with optimized defaults
15
15
  - ๐Ÿ’พ **Persistence** - Save/load indexes to disk or serialize to buffers
16
16
  - โšก **High Performance** - Direct C++ bindings with zero-copy data transfer
17
- - ๐Ÿงช **Well-Tested** - 1000+ comprehensive tests covering edge cases
18
17
  - ๐Ÿ“š **TypeScript Support** - Full type definitions included
19
- - ๐Ÿ”ง **Production-Ready** - Memory-safe, error-handled, and battle-tested
20
18
 
21
19
  ## Installation
22
20
 
@@ -482,19 +480,6 @@ npm run docs:serve # Serve docs locally at http://localhost:8000
482
480
  - **Examples**: See `examples/` directory
483
481
  - **Contributing**: See [CONTRIBUTING.md](./CONTRIBUTING.md)
484
482
 
485
- ## Comparison with Other Packages
486
-
487
- ### vs. `faiss-node` (ewfian)
488
-
489
- | Feature | @faiss-node/native | faiss-node |
490
- |---------|-------------------|------------|
491
- | Async Operations | โœ… Promise-based | โŒ Synchronous (blocks event loop) |
492
- | Thread Safety | โœ… Mutex-protected | โŒ Not thread-safe |
493
- | API Design | โœ… High-level wrapper | โš ๏ธ Low-level FAISS classes |
494
- | TypeScript | โœ… Full support | โš ๏ธ Partial |
495
- | Testing | โœ… 1000+ tests | โš ๏ธ Minimal |
496
- | Production Ready | โœ… Yes | โš ๏ธ Early stage |
497
-
498
483
  ## Troubleshooting
499
484
 
500
485
  ### Build Errors
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faiss-node/native",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "High-performance Node.js native bindings for Facebook FAISS - the fastest vector similarity search library. Supports FLAT_L2, IVF_FLAT, and HNSW index types with async operations, persistence, and batch search.",
5
5
  "main": "src/js/index.js",
6
6
  "types": "src/js/types.d.ts",