https://github.com/csutorasa/xmpp
XMPP server for node.js
https://github.com/csutorasa/xmpp
xmpp
Last synced: over 1 year ago
JSON representation
XMPP server for node.js
- Host: GitHub
- URL: https://github.com/csutorasa/xmpp
- Owner: csutorasa
- Archived: true
- Created: 2018-07-20T18:53:54.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-12T14:21:25.000Z (over 7 years ago)
- Last Synced: 2024-10-24T15:38:26.102Z (over 1 year ago)
- Topics: xmpp
- Language: TypeScript
- Homepage:
- Size: 110 KB
- Stars: 5
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# XMPP JavaScript project [](https://travis-ci.org/csutorasa/xmpp)
## Developer guide
Prerequisites:
- [Node.js](https://nodejs.org/) 7 or later
- [MongoDB](https://www.mongodb.com/) 4 or later
- Any XMPP client for testing and using like [Pidgin](https://www.pidgin.im/)
Clone the repository and install the required dependencies. Build the application and run it.
```bash
git clone https://github.com/csutorasa/xmpp.git
cd xmpp
npm install
npm start
```
If you want to modify the source code incremental builds can be used. This will produce clean output and restarts the server each time a build has finished successfully.
Use the following command:
```bash
npm run watch
```
## Continous integration
Travis CI is used to check the state of the builds. You can check it [here](https://travis-ci.org/csutorasa/xmpp).