This project provides developers with a text editing environment specifically designed for writing and editing source code. It includes features such as syntax highlighting, auto-completion, and debugging tools.
![Code Editor Platform](https://user-images.githubusercontent.com/106395652/229842933-007044a7-772c-4ae3-a376-cd354d6e082b.png
To use this app, follow the steps below:
- Clone the repository: https://github.com/ankur766/CodeEditor.git`
- Install dependencies:
npm install
- Run the app:
npm start
- Syntax Highlighting: Different colors and styles for different parts of the code to enhance readability.
- Auto-Completion: Predicts and suggests code completions as you type.
- Debugging Tools: Helps identify and fix issues in your code more efficiently.
Ensure you have the following installed before running the project:
Follow these steps to run the project on your local machine:
-
Install Dependencies
Open your terminal and navigate to the project directory. Run the following command to install the necessary dependencies:
npm i
-
Start the Development Server
Once the dependencies are installed, start the development server using:
npm start
This command will start the application and you can view it in your web browser at
http://localhost:3000
. -
Build for Production
To create a production-ready build of the application, run:
npm run build
This will generate a
build
folder with all the optimized files. -
Serve the Build
To serve the production build, you can use a static server like
serve
. If you don't have it installed globally, you can install it using:npm install -g serve
Then, run the following command to serve the build:
serve -s build
This will serve the application at
http://localhost:5000
.
This project is licensed under the MIT License. See the LICENSE file for details.
Contributions are welcome! Please read the CONTRIBUTING guidelines for more information.
If you have any questions or feedback, feel free to reach out to the project maintainers.
Happy Coding!