Giter VIP home page Giter VIP logo

vscode-ide-purescript's Introduction

ide-purescript package for VS Code

This package provides editor support for PureScript projects in Visual Studio Code, based on the PureScript language server.

Features:

The extension language-purescript provides basic syntax highlighting support - it is required but should be installed automatically as a dependency. This package will start on opening a .purs file, and automatically trigger a rebuild on saving a .purs file.

See troubleshooting in case of issues.

Installation and General Use

This package makes use of the purs ide server (previously psc-ide) for most functionality, with purs compile (by default via spago) for the explicit build command. All this is via a Language Server Protocol implementation, purescript-language-server. Multi-root workspaces should be supported via a multiple language server approach.

This package will launch a purescript-language-server process, which will automatically (but this is configurable) start purs ide server in your project directory and kill it when closing. Start/stop and restart commands are provided for the IDE server in case required (eg after changing config or updating compiler version).

Functionality provided by the IDE server won't work until you build your project. This can either be via the built-in build command, or via an external tool - but if you do build externally, you should be sure to Restart/Reconnect purs IDE server (accessed through CTRL+SHIFT+P/CMD+SHIFT+P) afterwards, or the IDE server will not be able to pick up any changes.

You can configure building with pulp (optionally with psc-package) or spago by following the configuration steps below, after which you should also Restart/Reconnect purs IDE server.

Version support policy

PureScript compiler version support is as follows:

  • The current minor version of the compiler is supported at all patch versions (e.g. 0.14.xx)
  • The previous minor version of the compiler is supported at the latest patch version (e.g. 0.13.8) for new functionality, and where possible all patch versions for existing functionality
  • Any older compiler versions are not officially supported - they may continue to work and will not be intentionally broken, but no particular effort will be made for continued support in the face of API changes

With Spago (default)

PureScript: Build command will build your project using the command line spago build --purs-args --json-errors.

Note that prior to spago version 0.10.0.0, -- was used to separate purs args at the end of the command line.

For spago with psc-package, add the following configuration to your settings.json:

{
  "purescript.addSpagoSources": true,
  "purescript.addNpmPath": true,
  "purescript.buildCommand": "spago build --purs-args --json-errors"
}

With Pulp

PureScript: Build command will build your project using the command line pulp build -- --json-errors. Version 0.8.0+ of the PureScript compiler is required, as well as version 10.0.0 of pulp (with earlier versions remove --).

For pulp with psc-package, add the following configuration to your settings.json:

{
  "purescript.addNpmPath": true,
  "purescript.buildCommand": "pulp --psc-package build -- --json-errors"
}

Suggested extensions

See input-assist for Unicode input assistance on autocomplete which is known to work with this extension, alternatively unicode-latex which offers similar LaTeX based input vi a lookup command.

Suggested configuration

Watching directories like .spago, output can be slow and on occasion cause issues. Consider also files.exclude and search.exclude.

    "files.watcherExclude": {
       "**/.spago/**": true
    }

Key bindings

The only key binding supplied out of the box is Shift+Ctrl+B (or Shift+Cmd+B) for the full "Build" command. Although this is only enabled inside PureScript-language text editors, it does conflict with the built-in Build command. This can be edited, and other keybinds added, in the VS Code Keyboard Shortcuts preferences.

The following default vscode bindings are helpful for processing build errors:

  • F8 cycles through errors.
  • CTRL + . or CMD + . shows suggested fixes. The compiler sometimes provides these suggestions.

We will suggest you to add keyboard bindings for commands that you use frequently, which you can do through the menu item File > Properties > Keyboard Shortcuts.

Access to commands

To see all the commands provided by this package, locate the View > Command palette in menu and type 'purescript'. The contents vary but you'll get something like this.

command-menu

Build and error reporting

After you've added settings.json for your build system, Shift+Ctrl+B builds it. if you are not sure which settings.json it is, pick the Spago -one.

Autocomplete

Provided from purs ide server. Make sure your project is built first.

Completions will be sourced from modules imported in the current file.

Tooltips

Hovering over an identifier will show a tooltip with its type. Over a qualifier of a qualified identifier it will show the associated module name.

This feature disregards a context where the word appears, which means you will get some false positives (eg doesn't see local definitions, just the globals that should be visible in a given module).

demonstration

Go to symbol

'Go to symbol' locates definition of a symbol by its name.

demonstration

Go to definition

Hyperclick goto-definition functionality is supported. This is available with purs version 0.9.2 and above, and like tooltips/autocomplete works on identifiers bound at the top level.

In case source positions are not up to date, they may not be updated on rebuild, try rebuilding or restarting psc-ide server.

demonstration

Case split

The case split expands the case under the cursor. It allows you to auto-complete large case clauses.

demonstration

Add clause

The add clause reads the type declaration under the cursor and inserts an empty template.

demonstration

Pursuit lookup

Commands "Search Pursuit" and "Search Pursuit Modules" are available to search for identifiers or modules/packages on Pursuit.

PSCI

No particular support. Suggest you open a PSCI in the integrated terminal.

Troubleshooting

Generally the Output pane ("IDE PureScript" option in the dropdown) may give useful information if something is going wrong. Useful concepts:

Rebuilding

To ensure the latest information is available to the Language Server, rebuilding may be required. This can either be the "Build Command" in VS Code, or an external build followed by "Restart/Reconnect purs IDE server".

Common errors

Module not found

This normally means either the code is not built, or there is a version mismatch. To rebuild, see above.

In some cases your build process and VS Code may be hitting different purs versions. The VS Code extension/language server will find purs in your PATH, but that includes the npm local path if the corresponding option is set, which may differ from an external build process. You may need to launch code from a terminal containing the correct PATH.

Check the "Output" pane, at the very top after the Language Server starts it will list out the purs binary being used, you can check it's the one you expect.

API for downstream extensions

VSCode makes it possible for extensions to expose methods to other extensions for cross-extension interaction. The following methods are exposed by ide-purescript.

{
    // set middleware for the language client. for an example of
    // how to use VSCode language client middleware, see
    // https://code.visualstudio.com/api/language-extensions/embedded-languages
    // the full middleware API is documented at
    // https://github.com/microsoft/vscode-languageserver-node/blob/main/client/src/common/client.ts
    registerMiddleware: (m: Middleware) => void;
    // remove a given middleware, using the same string used to register it
    unregisterMiddleware: (m: Middleware) => void;
    // a callback of type () => void that is called when diagnostics begin
    // diagnostics are triggered whenever compilation of one or several files begins,
    // ie via a save event or by calling the `purescript.build` command
    setDiagnosticsBegin: (f: EffectUnit) => void;
    // a callback of type () => void that is called when diagnostics end
    setDiagnosticsEnd: (f: EffectUnit) => void;
    // a callback of type () => void that is called when cleaning a project begins
    // cleaning is triggered by calling the `purescript.clean` command
    setCleanBegin: (f: EffectUnit) => void;
    // a callback of type () => void that is called when cleaning a project ends
    setCleanEnd: (f: EffectUnit) => void;
}

To call these methods from your own extension, do something like:

export function activate(context: vscode.ExtensionContext) {
	const ext = vscode.extensions.getExtension('nwolverson.ide-purescript');
	const importedApi = ext.exports;
	importedApi.setDiagnosticsBegin(() => { console.log('Did I just hear diagnostics begin?'); });
  // some other stuff
}

Development

To develop (rather than use) this extension, see the instructions in purescript-language-server.

vscode-ide-purescript's People

Contributors

alessioprestileo avatar andyarvanitis avatar aranchelk avatar cheery avatar dependabot[bot] avatar devinrhode2 avatar dundargoc avatar emattiza avatar hansel-no-kioku avatar hrajchert avatar justinwoo avatar krzysztof-cieslak avatar milesfrain avatar nwolverson avatar oldfartdeveloper avatar vanceism7 avatar wclr avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

vscode-ide-purescript's Issues

No longer connects to existing psc-ide-server

I used to be able to run psc-ide-server in debug mode, and then when I reloaded the window it would connect to the running instance. Now when I reload the window it appears to always kill the existing server, start up a new one, and overwrite the .psc-ide-port file. This is making it difficult to debug some issues I'm having.

Merge problem list on fast-rebuild

I somewhat frequently initiate a full rebuild, which will yield errors across the whole project. If I go to one of those files and fix them, initiating a fast rebuild, all the errors disappear and I have to rebuild again. It would be nice if it would merge the errors instead.

Reduce notifications

In Atom I changed non-essential notifications to use a status bar icon instead, I think we also have an API for that here. Could think about this as well as reducing some.

Republish correct version

Somehow tagged latest with an older version. So the new default for "use purs" is not enabled if you get latest

Rogue psc-ide-server

…when I open a new project with Cmd+O (consequently closing the active one).

Build error(maybe psc-package related)

Hi,
This may very well be due to a lack of understanding of how psc-package works but I'm getting a build error while trying to build in vscode from a psc-package created personal project

Details:

  • PureScript version: 0.11.3

Steps:

  • Create a project directory and cd
  • psc-package init and psc-package build
  • Open project directory in vscode
  • vscode displays Started psc-ide-server (port 15206) message
  • Open my simple file(src/Trial.purs)
  • Press Cmd+Shift+B

Result:
Shows Error message Build Error. I don't see any specific errors being reported in the bottom status ribbon.

Assistance for unicode input

I have ported the agda input method to vscode and made it available in the vscode-input-assist extension. If I recall correctly, the Atom mode has some sort of latex input for unicode so maybe it would be worth adding this extension to the dependencies here to have feature parity.

If you think it is worth adding the dependency, it would be best to change the wordPattern to something like this.

The extended wordPattern is needed due to how the vscode completion algorithm works. Without it, some completions like \<=>n (⇎) cannot be typed because the completion widget will close as soon as a non-word character is typed after \.

Add "packagePath" setting

For people starting to use psc-package (or whatever else) instead of bower, it would be nice to have the option to override the "bower_components" search path. I can create and submit a PR for this if you like.

Tooltips broken

Tooltips are not appearing when I hover over symbols. To complicate things somewhat I'm running VS Code on Ubuntu 16.04 inside a virtualbox guest on a windows 10 host.

0.9 quick-fixes

I'm sure these will be broken, in particular the replacement range for _ suggestion and newlines changed.

Some default commands may be broken on windows

Due to the .cmd thing of npm installed commands. Unlike atom the configuration defaults are json rather than dynamic so need to do something different. Works when manually specified.

Can't find psc-ide-server in PATH

I just get this error when I open vscode

Couldn't find psc-ide-server, check PATH. Looked for: psc-ide-server in PATH:

How do I add psc-ide-server to the path? I don't even know where it is supposed to be installed by the purescript compiler.

I downloaded purescript and pulp today from npm so I have no idea why I get this error. I can't get the deprecated psc-ide to build in stack either.

Any suggestions? What other info do you need?

Purescript: Build command

On Windows, this command does nothing (probably connected with the other issue). Is it necessary to provide some special setting when using on Windows? Could you please give a hint how to?
By the way, should it work the same way as in Atom, i.e. build once saved?
Thank you.

Renamed psc-ide to psc-ide-client

In order to be more consistent I renamed the psc-ide exectuable into psc-ide-client. This will take effect with the purescript-0.8.1 release.

Shared suggestion code

Finish sharing suggestions code with atom package & pull more out of .ts

(eg - "Apply Suggestion" text is customised)

Request Opinion: VS Code and Atom

Hi Nicholas,

I'm researching IDEs and I was wondering if you could share your experiences writing plugins for both Atom and VS Code. Do you prefer one over the other and if you have to support just one IDE, which one would you prefer?

Thanks,
Rajiv

Adding imports via Ctrl+Space eats newlines on Windows

Here is what I have:

module A where
-- empty line
import Prelude
-- empty line
f :: String -> Maybe String

Go after Maybe, press Ctrl+Space. This imports Data.Maybe and I want this:

module A where
-- empty line
import Prelude
import Data.Maybe (Maybe)
-- empty line
f :: String -> Maybe String

But I get this:

module A where
-- empty line
import Prelude
import Data.Maybe (Maybe)
f :: String -> Maybe String

It eats declarations when no empty lines exist. Works on Linux.

Pulp version 11.0.0
purs version 0.11.3

Open FFI file command

Would it be generally useful to open the corresponding FFI file to the side? Go to definition for foreign imports would be better but sounds difficult.

Error: Unrecognised arguments: --json-errors

I'm getting a build error in VS Code when i try to use the pulp build command from the command palette, so i thought i would try the build on the command line.

bash-3.2$ pulp --version
Pulp version 10.0.0
psc version 0.10.5 using /usr/local/bin/psc
bash-3.2$ pulp build --no-psa --json-errors
Error: Unrecognised arguments: --json-errors

I see that psc supports --json-errors

bash-3.2$ psc --help
--json-errors Print errors to stderr as JSON

But i don't see any support for that with pulp

bash-3.2$ pulp build --help
--no-psa Do not attempt to use the psa frontend instead of pic

Ideas?

Code breaks on imports claiming it was not found

Whenever I have imports, the IDE breaks on import statements claiming they were not found with the following error message:

Module Control.Monad.State was not found.
  Make sure the source file exists, and that it has been provided as an input to psc.

Is there a fix for this or is it a bug?

Purescript version: 0.11.4
Pulp version: 11.0.0

Module autocomplete

This works in Atom to autocomplete specifically modules in the context of imports.

Search on Pursuit

Hello,

I often go to Pursuit in order to search a function by a type definition.

Would it be possible to integrate a command to search directly on Pursuit within VS Code ?

Make psc-ide-server optional

I tried setting fastRebuild to false in my default language configuration (opting to only enable it per project), but I don't think this settings does anything anymore. Often times the plugin is too eager about trying to launch a server. For example, just opening the PureScript language settings in a fresh window tries to launch a server (resulting in an error). Sometimes I want to open up or work on random PureScript files, and the launch errors are off-putting.

Build failure not reported

When I run a build which should fail, it instead gave an info message "Build success!"

Rebuild successfully failed.

More configurable build

  1. Not configurable per project. Perhaps check for a npm build:purs script. (workspace settings)
  2. Cannot be triggered by the standard build command. Perhaps generate a task like for npm. It'd be nice to offer psa filtering in the template. #21
  3. No problem matchers for builds triggered by npm, WebPack, etc. #17
  4. Notifications too verbose. #15
  5. Build failure not reported. Perhaps also open problems view when problems exist. #14
  6. Automatic rebuild has never worked for me. (separate issue when I diagnose)
  7. No test command. #16

These might also apply to the Build package when I used Atom.

requires psc 0.9.2 ?

I think this requires psc 0.9.2 due to passing globs to psc-ide-server.

Probably should follow the same policy as atom package - support compiler from last patch of prior minor version up to current version.

Feature Request: Run Code(ctrl+alt+N)

Hi,
One feature that I use frequently is running the main command within the IDE. An example of this is shown here(after 0:38).

I got something similar hacky using a task runner running pulp run. But I see that if one right clicks on the purs file, one sees the option Run Code. When I click on that, I get the info message Code language not supported or defined.

I was wondering what you thought of binding that to a behaviour which runs the main command in the file where it was executed. Would this fall under the vscode-ide-purescript project or is it external to it?

psc problem matcher

Discussed #13; not clear how well this can match psc output format but certainly could be worth a try.

Downside of this is JSON compiler output as processed by PureScript specific build command can power quick-fix functionality, give metadata

Improved tooltips

Should be able to easily get syntax highlighting in tooltips I think

Allow variable substitution in pscIdeServerExe

VScode supports variable substitution in certain config variables. Supporting it in the "purescript.pscIdeServerExe" config variable would allow me to specify a local node binary relative to project root. Currently this doesn't work as evidenced by the error below:

Couldn't find psc-ide-server, check PATH. Looked for: ${workspaceRoot}/node_modules/.bin/psc-ide-server in PATH: [snip]

Goto Definition is broken

Trying to "go to definition" on 0.8.1 is failing, trying to open the source at /bower_components/../...purs

I've hacked a solution by making the following change to Location.ts, but i doubt this is the right solution:

import { workspace, Position, Location, Uri } from 'vscode';
import * as Path from 'path';

export const mkLocation = (file : string) => (pos: Position) =>  {
    var fullPath = Path.resolve(workspace.rootPath, file)
    return new Location(Uri.file(fullPath), pos); 
}

if this is good enough for now i can submit a PR though

error reporting not working on save

When we save the file we just sometimes get "Build Error :(" and no error reporting.

When we checked the Developer Tools, we were able to see ECONNREFUSED error.

Thanks in Advance for the fix.

Display the module's name in suggestions

Hello,

I often auto-import a function from a suggestion from the wrong module because I'm not able to see the module's name in it.

Example :
image

Would it be possible to add the module's name in the suggestions ?

Appears to do too much `load`ing

I work on a large project (which has somewhat high cost to reload, 2-3s). Everytime I save and recompile, it also issues a load command. And then every so often it seems like it decides that it needs to issue a load command for every file open in the project. I think the arguments sent are incorrect according to https://github.com/purescript/purescript/blob/master/psc-ide-server/PROTOCOL.md#load. Maybe since it is sending dependencies instead of modules, it is reloading everything from disk? Not sure. I think psc-ide-server must be handling these requests one at a time, because it can take a while :). Anyway, here is a log after saving a single file

[Debug] {"params":{"file":"/Users/nathan/Sites/slamdata/slamdata/src/SlamData/Workspace/Card/Component.purs"},"command":"rebuild"} @(main:Main psc-ide-server/Main.hs:170:9)
Reloaded File at: /Users/nathan/Sites/slamdata/slamdata/output/SlamData.Workspace.Card.Component/externs.json
[Debug] Setting Rebuild cache: SlamData.Workspace.Card.Component @(pures_8jj4hUyQwQtHLLXzhSQyGW:Language.PureScript.Ide.Rebuild src/Language/PureScript/Ide/Rebuild.hs:94:9)
[perf] Command Rebuild took 1266.56ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"dependencies":["SlamData.Workspace.Card.Component"],"modules":[]},"command":"load"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Finished populating Stage2 in 0.00ms
[perf] Command Load took 2637.60ms
[perf] Finished populating Stage3 in 0.00ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"file":"/Users/nathan/Sites/slamdata/slamdata/src/SlamData/Workspace/Card/Component.purs","type":"import"},"command":"list"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Command List took 7.88ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"dependencies":["SlamData.Workspace.Card.Component.State"],"modules":[]},"command":"load"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Command Load took 2369.80ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"dependencies":["SlamData.Workspace.Eval.Persistence"],"modules":[]},"command":"load"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Finished populating Stage2 in 0.05ms
[perf] Finished populating Stage3 in 0.96ms
[perf] Command Load took 2280.72ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"dependencies":["SlamData.Workspace.Deck.Component"],"modules":[]},"command":"load"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Finished populating Stage2 in 0.01ms
[perf] Finished populating Stage3 in 2.16ms
[perf] Finished populating Stage2 in 0.00ms
[perf] Command Load took 2337.57ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"dependencies":["Control.Monad.Aff.EventLoop"],"modules":[]},"command":"load"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Finished populating Stage3 in 0.00ms
[perf] Finished populating Stage2 in 0.00ms
[perf] Command Load took 2207.99ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"dependencies":["SlamData.Workspace.Deck.Component"],"modules":[]},"command":"load"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Finished populating Stage3 in 0.22ms
[perf] Finished populating Stage2 in 0.00ms
[perf] Command Load took 2020.27ms
[perf] Finished populating Stage3 in 0.01ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"dependencies":["SlamData.Workspace.Eval.Persistence"],"modules":[]},"command":"load"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Finished populating Stage2 in 0.01ms
[perf] Finished populating Stage3 in 0.00ms
[perf] Command Load took 2426.35ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"file":"/Users/nathan/Sites/slamdata/slamdata/src/SlamData/Workspace/Card/Component/State.purs","type":"import"},"command":"list"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Command List took 12.37ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"dependencies":["SlamData.Workspace.Card.Component.State"],"modules":[]},"command":"load"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Finished populating Stage2 in 0.01ms
[perf] Command Load took 1941.34ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"dependencies":["SlamData.Workspace.Card.Component"],"modules":[]},"command":"load"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Finished populating Stage3 in 0.22ms
[perf] Finished populating Stage2 in 0.01ms
[perf] Command Load took 2066.34ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"dependencies":["SlamData.Workspace.Eval"],"modules":[]},"command":"load"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Finished populating Stage3 in 0.00ms
[perf] Command Load took 2374.99ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"dependencies":["SlamData.Workspace.Eval.Deck"],"modules":[]},"command":"load"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Finished populating Stage2 in 0.05ms
[perf] Finished populating Stage3 in 0.01ms
[perf] Finished populating Stage2 in 0.00ms
[perf] Command Load took 1971.95ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"file":"/Users/nathan/Sites/slamdata/slamdata/src/SlamData/Workspace/Eval/Persistence.purs","type":"import"},"command":"list"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Finished populating Stage3 in 0.50ms
[perf] Command List took 43.56ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"dependencies":["SlamData.Workspace.Card.Common"],"modules":[]},"command":"load"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Finished populating Stage2 in 0.01ms
[perf] Command Load took 2050.43ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"dependencies":["SlamData.Workspace.Deck.Slider"],"modules":[]},"command":"load"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Finished populating Stage3 in 0.22ms
[perf] Finished populating Stage2 in 0.00ms
[perf] Command Load took 2098.16ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"dependencies":["SlamData.Workspace.Deck.Component.Render"],"modules":[]},"command":"load"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Finished populating Stage3 in 0.23ms
[perf] Command Load took 2428.36ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"file":"/Users/nathan/Sites/slamdata/slamdata/src/SlamData/Workspace/Deck/Component.purs","type":"import"},"command":"list"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Finished populating Stage2 in 0.01ms
[perf] Finished populating Stage3 in 0.05ms
[perf] Command List took 45.11ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"file":"/Users/nathan/Sites/slamdata/slamdata/src/Control/Monad/Aff/EventLoop.purs","type":"import"},"command":"list"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Command List took 3.79ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"file":"/Users/nathan/Sites/slamdata/slamdata/src/SlamData/Workspace/Deck/Component.purs","type":"import"},"command":"list"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Command List took 28.57ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"file":"/Users/nathan/Sites/slamdata/slamdata/src/SlamData/Workspace/Eval/Persistence.purs","type":"import"},"command":"list"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Command List took 33.27ms
[Debug] Accepted a connection @(main:Main psc-ide-server/Main.hs:160:5)
[Debug] {"params":{"file":"/Users/nathan/Sites/slamdata/slamdata/src/SlamData/Workspace/Card/Component/State.purs","type":"import"},"command":"list"} @(main:Main psc-ide-server/Main.hs:170:9)
[perf] Command List took 14.15ms

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.