Giter Site home page Giter Site logo

pm-web's Introduction

pm-web

Church membership tracking application

Demo App

Displays a counter which can be started, stopped, and reset. This is used to demosntrate how commands can be sent from the client to the server. It also has a text field in which you enter text that is then echoed to another text field by the server. This is used to demonstrate an RPC style exchange.

The app works with multiple browsers, keeping data for each browser session separate. It automatically connectes to the WebSocket server, and tries to reconnect automatically every five seconds if the server goes down.

The client wraps the WebSocket exchange in a way that emulates a synchronous exchange. It assigns a unique ID to each request an returns a Promise that resolves when a response with the same ID is received. Using the async await facility of ES6, we even use synchronous method syntax for this asynchronous exchange.

Install

  • cd pm-web

  • npm install

  • cd client

  • npm install

Use

Developer

Run the React development server, which adjusts to source code changes automatically, shows detailed error messages in the browser console, and supports many other tooling capabilities

  • cd pm-web

  • npm run dev

Production

Build and run an optimized version of the app (compiled into a few files)

  • cd pm-web/client

  • npm run build

  • cd ..

  • npm run ops # Serves the app via express (in server.js)

View the app

In either case, the app can ge found at http://localhost:3000

There is a WebSocket server running on port 4000

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.