navis.js 5.2.0 → 5.2.2
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.
- package/README.md +25 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,16 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
A lightweight, serverless-first, microservice API framework designed for AWS Lambda and Node.js.
|
|
4
4
|
|
|
5
|
-
**Author:** Syed Imran Ali
|
|
5
|
+
**Author:** Syed Imran Ali
|
|
6
|
+
**Version:** 5.2.1
|
|
7
|
+
**License:** MIT
|
|
6
8
|
|
|
7
9
|
## Philosophy
|
|
8
10
|
|
|
9
11
|
Navis.js is "Express for serverless microservices — but simpler."
|
|
10
12
|
|
|
11
13
|
- **Extremely lightweight** - Zero or minimal dependencies
|
|
12
|
-
- **Serverless-first** - Built for AWS Lambda
|
|
14
|
+
- **Serverless-first** - Built for AWS Lambda with cold start optimizations
|
|
13
15
|
- **Microservice-friendly** - API-to-API communication made easy
|
|
14
16
|
- **Simple & readable** - No magic abstractions
|
|
17
|
+
- **Production-ready** - Enterprise features included (caching, security, observability)
|
|
18
|
+
- **Developer-friendly** - OpenAPI docs, testing utilities, and comprehensive tooling
|
|
15
19
|
|
|
16
20
|
## Installation
|
|
17
21
|
|
|
@@ -358,23 +362,32 @@ Production-ready: advanced routing, validation, authentication, rate limiting, e
|
|
|
358
362
|
### v5 ✅
|
|
359
363
|
Enterprise-grade: caching, CORS, security headers, compression, health checks, graceful shutdown
|
|
360
364
|
|
|
361
|
-
### v5.1 ✅
|
|
365
|
+
### v5.1 ✅
|
|
362
366
|
Developer experience: OpenAPI/Swagger, API versioning, file upload, testing utilities
|
|
363
367
|
|
|
364
368
|
### v5.2 ✅ (Current)
|
|
365
369
|
Real-time features: WebSocket, Server-Sent Events, database integration
|
|
366
370
|
|
|
371
|
+
## What's Next?
|
|
372
|
+
|
|
373
|
+
Future versions may include:
|
|
374
|
+
- GraphQL support
|
|
375
|
+
- gRPC integration
|
|
376
|
+
- Advanced caching strategies
|
|
377
|
+
- More database adapters
|
|
378
|
+
- Enhanced monitoring and alerting
|
|
379
|
+
|
|
367
380
|
## Documentation
|
|
368
381
|
|
|
369
|
-
- [V2 Features Guide](./V2_FEATURES.md) - Complete v2 features documentation
|
|
370
|
-
- [V3 Features Guide](./V3_FEATURES.md) - Complete v3 features documentation
|
|
371
|
-
- [V4 Features Guide](./V4_FEATURES.md) - Complete v4 features documentation
|
|
372
|
-
- [V5 Features Guide](./V5_FEATURES.md) - Complete v5 features documentation
|
|
373
|
-
- [V5.1 Features Guide](./V5.1_FEATURES.md) - Complete v5.1 features documentation
|
|
374
|
-
- [V5.2 Features Guide](./V5.2_FEATURES.md) - Complete v5.2 features documentation
|
|
375
|
-
- [Lambda Optimization Guide](./LAMBDA_OPTIMIZATION.md) - Lambda cold start optimization guide (v3.1)
|
|
376
|
-
- [Verification Guide v2](./VERIFY_V2.md) - How to verify v2 features
|
|
377
|
-
- [Verification Guide v3](./VERIFY_V3.md) - How to verify v3 features
|
|
382
|
+
- [V2 Features Guide](./docs/V2_FEATURES.md) - Complete v2 features documentation
|
|
383
|
+
- [V3 Features Guide](./docs/V3_FEATURES.md) - Complete v3 features documentation
|
|
384
|
+
- [V4 Features Guide](./docs/V4_FEATURES.md) - Complete v4 features documentation
|
|
385
|
+
- [V5 Features Guide](./docs/V5_FEATURES.md) - Complete v5 features documentation
|
|
386
|
+
- [V5.1 Features Guide](./docs/V5.1_FEATURES.md) - Complete v5.1 features documentation
|
|
387
|
+
- [V5.2 Features Guide](./docs/V5.2_FEATURES.md) - Complete v5.2 features documentation
|
|
388
|
+
- [Lambda Optimization Guide](./docs/LAMBDA_OPTIMIZATION.md) - Lambda cold start optimization guide (v3.1)
|
|
389
|
+
- [Verification Guide v2](./docs/VERIFY_V2.md) - How to verify v2 features
|
|
390
|
+
- [Verification Guide v3](./docs/VERIFY_V3.md) - How to verify v3 features
|
|
378
391
|
|
|
379
392
|
## License
|
|
380
393
|
|