https://github.com/beeman/loopback-angular-chat
Experimental chat app built with LoopBack, Angular and Socket.IO
https://github.com/beeman/loopback-angular-chat
Last synced: 7 months ago
JSON representation
Experimental chat app built with LoopBack, Angular and Socket.IO
- Host: GitHub
- URL: https://github.com/beeman/loopback-angular-chat
- Owner: beeman
- License: mit
- Created: 2016-03-28T03:16:13.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-03T16:59:21.000Z (about 10 years ago)
- Last Synced: 2024-12-28T21:42:39.228Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 77.1 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# loopback-angular-chat
Experimental chat app built with LoopBack, Angular and Socket.IO
# Requirements
- node (tested with 5+)
- npm (tested with 3+)
# Installation
The installation is
$ git clone https://github.com/beeman/loopback-angular-chat.git
$ cd loopback-angular-chat
$ npm install
# Running
Currently the server and the client are running separately. [This is something that needs to be fixed.](https://github.com/beeman/loopback-angular-chat/issues/1)
## Starting the server
From inside the project directory run
$ npm start
The server will start on http://0.0.0.0:3000/
## Starting the server
From inside the project directory run
$ cd client
$ npm start
The client will start on http://localhost:8080/
# Credits
This project is inspired by and uses code from:
- https://www.codetutorial.io/angularjs-chat-whit-socket-io-and-loopback/
- https://www.codetutorial.io/angularjs-chat-with-loopback-and-socket-io-authentication/