psc-ide/README.md
Editor and tooling support for the PureScript programming language.
This document will describe how to run purs ide as an editor plugin creator.
If you're looking to set up your PureScript development environment consult
the
documentation repository instead.
Start the server by running the purs ide server [SOURCEGLOBS] executable, where
SOURCEGLOBS are (optional) globs that match your PureScript sourcefiles.
It supports the following options:
-p / --port specify a port. Defaults to 4242-d / --directory specify the toplevel directory of your project. Defaults to
the current directory--output-directory: Specify where to look for compiled output inside your
project directory. Defaults to output/, relative to either the current
directory or the directory specified by -d.--log-level: Can be set to one of "all", "none", "debug" and "perf"--version: Output psc-ide versionAfter you started the server you can start issuing requests using
purs ide client. Make sure you start by loading the modules before you try to
query them.
purs ide expects the built externs inside the output folder of your
project after running pulp build or purs compile respectively.
(If you changed the port of the server you can change the port for
purs ide client by using the -p option accordingly)
If you want to know how to send commands/queries to purs ide take a look
at PROTOCOL.md