
- 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.
52 lines
1.7 KiB
Markdown
52 lines
1.7 KiB
Markdown
# Methods
|
|
|
|
[![NPM Version][npm-image]][npm-url]
|
|
[![NPM Downloads][downloads-image]][downloads-url]
|
|
[![Node.js Version][node-version-image]][node-version-url]
|
|
[![Build Status][travis-image]][travis-url]
|
|
[![Test Coverage][coveralls-image]][coveralls-url]
|
|
|
|
HTTP verbs that Node.js core's HTTP parser supports.
|
|
|
|
This module provides an export that is just like `http.METHODS` from Node.js core,
|
|
with the following differences:
|
|
|
|
* All method names are lower-cased.
|
|
* Contains a fallback list of methods for Node.js versions that do not have a
|
|
`http.METHODS` export (0.10 and lower).
|
|
* Provides the fallback list when using tools like `browserify` without pulling
|
|
in the `http` shim module.
|
|
|
|
## Install
|
|
|
|
```bash
|
|
$ npm install methods
|
|
```
|
|
|
|
## API
|
|
|
|
```js
|
|
var methods = require('methods')
|
|
```
|
|
|
|
### methods
|
|
|
|
This is an array of lower-cased method names that Node.js supports. If Node.js
|
|
provides the `http.METHODS` export, then this is the same array lower-cased,
|
|
otherwise it is a snapshot of the verbs from Node.js 0.10.
|
|
|
|
## License
|
|
|
|
[MIT](LICENSE)
|
|
|
|
[npm-image]: https://img.shields.io/npm/v/methods.svg?style=flat
|
|
[npm-url]: https://npmjs.org/package/methods
|
|
[node-version-image]: https://img.shields.io/node/v/methods.svg?style=flat
|
|
[node-version-url]: https://nodejs.org/en/download/
|
|
[travis-image]: https://img.shields.io/travis/jshttp/methods.svg?style=flat
|
|
[travis-url]: https://travis-ci.org/jshttp/methods
|
|
[coveralls-image]: https://img.shields.io/coveralls/jshttp/methods.svg?style=flat
|
|
[coveralls-url]: https://coveralls.io/r/jshttp/methods?branch=master
|
|
[downloads-image]: https://img.shields.io/npm/dm/methods.svg?style=flat
|
|
[downloads-url]: https://npmjs.org/package/methods
|