Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can serve your code to the Pulsar app via an HTTP server running on your development machine. One option is to use http-party/http-server to serve the contents of a directory, or if you are building a React or Angular app to run within Pulsar, these frameworks already have their own way to run an HTTP server.

NOTE: You must use relative paths for all resources you wish to serve from your development server-- this includes stylesheets, javascript files, images, and anything referenced in your code that does not exist inside of Pulsar. For example, use this: <script src='static/js/mycode.js' /> and not this: <script src='/static/js/mycode.js' />

Android Local Development Setup

...