mattclaw / website

The prosemirror.net website

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Prosemirror.net

These are the sources for http://prosemirror.net

This currently contains a front-page, the demos (including server-side code to support the collaborative demo), the guides, and the scripts to build the reference docs.

Installation

Install Node.js.

Install the module's dependencies:

npm install

Build the documentation and all the demos' JavaScript source

make

That will populate the public/ directory with an instance of the website. You could point a webserver at it to try it out.

To work on the demos, or to experiment with the collaborative demo, it is a good idea to use the dev server:

npm run devserver -- --port 8888

That will get you a server at localhost:8888 that serves the files in public/, along with the collaborative editing backend, and updates the demo pages to use moduleserve so that you can run the demos directly from the source files, rather than using the bundled code. You can now edit them and see the changes with a single refresh. (Though the server-side collaborative code still needs a server refresh to update.)

Note that this is not secure (it provides filesystem access of HTTP) and not fast (the browser will fetch each module individually), and should only be used for development, on your local machine, bound to localhost.

About

The prosemirror.net website

License:MIT License


Languages

Language:JavaScript 49.3%Language:HTML 46.7%Language:CSS 3.2%Language:Makefile 0.8%