
- Complete NestJS TypeScript implementation with WebSocket support - Direct messaging (DM) and group chat functionality - End-to-end encryption with AES encryption and key pairs - Media file support (images, videos, audio, documents) up to 100MB - Push notifications with Firebase Cloud Messaging integration - Mention alerts and real-time typing indicators - User authentication with JWT and Passport - SQLite database with TypeORM entities and relationships - Comprehensive API documentation with Swagger/OpenAPI - File upload handling with secure access control - Online/offline status tracking and presence management - Message editing, deletion, and reply functionality - Notification management with automatic cleanup - Health check endpoint for monitoring - CORS configuration for cross-origin requests - Environment-based configuration management - Structured for Flutter SDK integration Features implemented: ✅ Real-time messaging with Socket.IO ✅ User registration and authentication ✅ Direct messages and group chats ✅ Media file uploads and management ✅ End-to-end encryption ✅ Push notifications ✅ Mention alerts ✅ Typing indicators ✅ Message read receipts ✅ Online status tracking ✅ File access control ✅ Comprehensive API documentation Ready for Flutter SDK development and production deployment.
50 lines
1.3 KiB
Markdown
50 lines
1.3 KiB
Markdown
# merge-descriptors
|
|
|
|
[![NPM Version][npm-image]][npm-url]
|
|
[![NPM Downloads][downloads-image]][downloads-url]
|
|
[![Build Status][travis-image]][travis-url]
|
|
[![Test Coverage][coveralls-image]][coveralls-url]
|
|
|
|
Merge objects using descriptors.
|
|
|
|
```js
|
|
var thing = {
|
|
get name() {
|
|
return 'jon'
|
|
}
|
|
}
|
|
|
|
var animal = {
|
|
|
|
}
|
|
|
|
merge(animal, thing)
|
|
|
|
animal.name === 'jon'
|
|
```
|
|
|
|
## API
|
|
|
|
### merge(destination, source)
|
|
|
|
Redefines `destination`'s descriptors with `source`'s. The return value is the
|
|
`destination` object.
|
|
|
|
### merge(destination, source, false)
|
|
|
|
Defines `source`'s descriptors on `destination` if `destination` does not have
|
|
a descriptor by the same name. The return value is the `destination` object.
|
|
|
|
## License
|
|
|
|
[MIT](LICENSE)
|
|
|
|
[npm-image]: https://img.shields.io/npm/v/merge-descriptors.svg
|
|
[npm-url]: https://npmjs.org/package/merge-descriptors
|
|
[travis-image]: https://img.shields.io/travis/component/merge-descriptors/master.svg
|
|
[travis-url]: https://travis-ci.org/component/merge-descriptors
|
|
[coveralls-image]: https://img.shields.io/coveralls/component/merge-descriptors/master.svg
|
|
[coveralls-url]: https://coveralls.io/r/component/merge-descriptors?branch=master
|
|
[downloads-image]: https://img.shields.io/npm/dm/merge-descriptors.svg
|
|
[downloads-url]: https://npmjs.org/package/merge-descriptors
|