Skip to content
/ rxfm-starter Public template

A starter project for the RxFM web framework.

License

Notifications You must be signed in to change notification settings

alden12/rxfm-starter

Repository files navigation

RxFM Starter App

Welcome to the RxFM starter app! You can learn more about RxFM on its GitHub page.

Getting Started

Make sure you have Node installed, then in the app root directory run:

npm install

Followed by:

npm start

Once this has finished, open your browser to localhost:4200 to view the live app!

Build the App

You can build the app by running:

npm run build

This will output the built files into the /dist folder.

Running Unit Tests

Run jest unit tests using:

npm run test

Or use the following to run tests with automatic file change watching enabled:

npm run test:watch