Coder Social home page Coder Social logo

pb2-spies's Introduction

Project Description

A chat application that provides real-time function using websockets.

What You Will Learn

  • How to setup a simple Node.js Express server
  • How to setup and use socket.io
  • How to use socket.io-client
  • Emit events through websockets

Installing and Running

Before running the following commands, make sure you have navigated into the project root directory first:

$ cd react-sockchat

Install the npm modules:

$ [sudo] npm install

Run the backend with node:

$ node server.js

Run on a local server with webpack-dev-server:

$ webpack-dev-server --port 8080     # feel free to modify

The above command is the recommended way to run the application locally, since the repo does not contain the actual public/js/main.js file.

That being said, you can run it using npm's http-server, but make sure that:

  • you have actually transpiled the public/js/main.js file and have it written into the directory (instead of the files temporarily stored on the webpack-dev-server):

    $ webpack
    
  • and the server is run from the root directory, not the public directory (by default):

    $ npm install http-server        # if it isn't installed yet
                                     # (add -g parameter for global installation)
    
    $ http-server . -p 8080          # feel free to modify options as appropriate
    

In either cases, your application will now then be available at http://localhost:8080/public.

pb2-spies's People

Contributors

eddowh avatar jonpedigo avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.