如何在我的IDE中添加Intellisense

时间:2018-02-02 19:43:37

标签: node.js angular electron intellisense

我在MEAN堆栈中创建了一个在线IDE,它编写代码并从服务器提供结果,以使其更好,我想在我的IDE中为VSCode或Atom提供类似intellisense的功能。我怎样才能做到这一点?有什么建议吗?

1 个答案:

答案 0 :(得分:1)

您可以查看LSP协议规范:https://github.com/Microsoft/language-server-protocol和服务器实施:https://github.com/Microsoft/vscode-languageserver-node VS代码用于其语言服务。

相关问题