Skip to content

ankur766/CodeEditor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

Code Editor Platform

Introduction

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.

SCREENSHOT

![Code Editor Platform](https://user-images.githubusercontent.com/106395652/229842933-007044a7-772c-4ae3-a376-cd354d6e082b.png

Usage

To use this app, follow the steps below:

  1. Clone the repository: https://github.com/ankur766/CodeEditor.git`
  2. Install dependencies: npm install
  3. Run the app: npm start

Features

  • 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.

Prerequisites

Ensure you have the following installed before running the project:

Getting Started

Follow these steps to run the project on your local machine:

  1. Install Dependencies

    Open your terminal and navigate to the project directory. Run the following command to install the necessary dependencies:

    npm i
  2. 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.

  3. 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.

  4. 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.

Screenshot

Code Editor Platform

License

This project is licensed under the MIT License. See the LICENSE file for details.

Contributing

Contributions are welcome! Please read the CONTRIBUTING guidelines for more information.

Contact

If you have any questions or feedback, feel free to reach out to the project maintainers.


Happy Coding!