Codeium React Editor is a free, open-source code editor with unlimited autocomplete. Brought to you by the team at Codeium. Free with no account required.
- Unlimited autocomplete (no account required)
- Customizable API extended from Monaco React
Check it out here!
Install using any of these package manager.s
# NPM
npm install @codeium/react-code-editor
# Yarn
yarn add @codeium/react-code-editor
# PNPM
pnpm install @codeium/react-code-editor
Now import the CodeiumEditor
and enjoy lightning fast autocomplete, directly in your browser, 100% for free!
import { CodeiumEditor } from "@codeium/react-code-editor";
export const IdeWithAutocomplete = () => {
return (
<div>
<p>Here's an AI-powered Python editor using Codeium.</p>
<CodeiumEditor language="python" theme="vs-dark" />
</div>
);
};
Here are some examples of Codeium React Editor used in production:
This project is a wrapper around Microsoft's Monaco editor which is the editor that powers VS Code with the extended capability of providing code autocompletion.
The autocompletes are provided by analyzing the editor's content and predicting and providing suggestions based on that context. To learn more about how the autocompletion works, visit Codeium's FAQ.
The core API of the editor is the same as that of the wrapped project. You can view the editor API here.
This project would not have been possible without Suren Atoyan's Monaco React project.
Create issues in this repositories for anything related to autocompletion functionality. If you have any issues with the editor API or functionality, create an issue in the editor repository.