p2b: Users can only mount inside users/email now.

I changed all instances of the name "google/p2b" to
"users/jane@google.com/chrome/p2b".

When you mount a new server, it will default to
"namespace.join(runtime.accountName, p2b)", and globs happen on that
name as well.

Change-Id: I2c44065bb4e846ab1e9baec6cdfaf840f22bdde1
12 files changed
tree: 2e18e597be8144c5476de5672505956a4b6d6b61
  1. browser/
  2. go/
  3. .gitignore
  4. AUTHORS
  5. CONTRIBUTORS
  6. LICENSE
  7. Makefile
  8. package.json
  9. PATENTS
  10. README.md
  11. VERSION
README.md

Pipe to Browser

P2B allows one to pipe anything from shell console to the browser. Data being piped to the browser then is displayed in a graphical and formatted way by a “viewer” Viewers are pluggable pieces of code that know how to handle and display a stream of data.

For example one can do:

echo "Hi!" | p2b users/jane@google.com/chrome/p2b/console

or

cat cat.jpg | p2b -binary users/jane@google.com/chrome/p2b/image

where users/jane@google.com/chrome/p2b is the Object name where p2b service is running in the browser. The suffix console or image specifies what viewer should be used to display the data.

Please see the help page inside the P2B application for detailed tutorials.

Building and Running

To build make To run make start #Starts a web server at 8080 and then navigate to http://localhost:8080

To stop simply Ctrl-C the console that started it

To clean make clean