Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.83 KB

README.md

File metadata and controls

38 lines (29 loc) · 1.83 KB

HTML, CSS, and JS Code Editor

Deploy Link - https://react-code-editor.surge.sh/

This is a code editor project built with React.js, utilizing the CodeMirror and CodeMirror 2 packages. It provides a user-friendly interface for writing and editing HTML, CSS, and JavaScript code in real-time.

Getting Started

To use the code editor project locally, follow these steps:
  • Clone the repository: git clone https://github.com/saksham-raghuvanshi/code-editor.git
  • Navigate to the project directory: cd code-editor
  • Install dependencies: npm install
  • Start the development server: npm start
  • Open your web browser and go to http://localhost:3000 to see the code editor in action.

Dependencies

The code editor project relies on the following dependencies:
  • React.js: A JavaScript library for building user interfaces.
  • CodeMirror: A versatile text editor implemented in JavaScript for browser-based code editing.
  • CodeMirror 2: An updated version of CodeMirror that offers enhanced features and improvements.
  • You can find the complete list of dependencies in the package.json file.

Contributing

Contributions to this code editor project are welcome! If you find any issues or have suggestions for improvements, please open an issue on the GitHub repository.
  • Fork the repository.
  • Create a new branch for your feature or bug fix: git checkout -b feature/your-feature.
  • Make your changes and test them thoroughly.
  • Commit your changes: git commit -am 'Add new feature'.
  • Push the branch to your forked repository: git push origin feature/your-feature.
  • Open a pull request on the main repository.
  • Please ensure that your code adheres to the existing coding style and that you include appropriate tests.