0.7.5 • Published 6 years ago

@chemzqm/solargraph-utils v0.7.5

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

solargraph-utils

A Node package for interacting with the Solargraph rubygem.

Example

import * as solargraph from 'solargraph-utils';
let config = new Solargraph.Configuration();
let server = new solargraph.Server(config);
server.start().then(() => {
    server.suggest('Str', 0, 3).then((response) => {
        console.log("The server's response: " + JSON.stringify(response));
        server.stop();
    });
});