TL;DR
I need intelligent autopletion/intellisense for JavaScript in ACE Editor.
Explanation
I am creating an online IDE for JavaScript using ACE Editor. Is there any library or open-source project that allows intelligent autopletion for JavaScript.
JavaScript is a dynamic language, intellisense integration is trivial for such languages (TypeScript does support this). ACE editor only supports basic autopletition (like Sublime Text) using enableBasicAutopletion
.
I need intelligent autopletion, an engine that parses the javascript in backend in realtime and provides suggestions.
Any help regarding this issue would be appreciated.
Thanks.
TL;DR
I need intelligent autopletion/intellisense for JavaScript in ACE Editor.
Explanation
I am creating an online IDE for JavaScript using ACE Editor. Is there any library or open-source project that allows intelligent autopletion for JavaScript.
JavaScript is a dynamic language, intellisense integration is trivial for such languages (TypeScript does support this). ACE editor only supports basic autopletition (like Sublime Text) using enableBasicAutopletion
.
I need intelligent autopletion, an engine that parses the javascript in backend in realtime and provides suggestions.
Any help regarding this issue would be appreciated.
Thanks.
Share Improve this question asked Oct 7, 2014 at 15:01 Ali AshrafAli Ashraf 7691 gold badge9 silver badges17 bronze badges 1- Long time ago since you asked this question, but have you looked at the monaco editor? I think this would be a perfect fit. – makim Commented Jan 10, 2017 at 19:16
1 Answer
Reset to default 6Try tern extension for Ace from https://github./angelozerr/tern.ace/
update: a better version at https://github./sevin7676/Ace.Tern with a demo http://sevin7676.github.io/Ace.Tern/demo.html