|
1 | | -# Getting Started with Create React App |
| 1 | +# Code Verse Frontend |
2 | 2 |
|
3 | | -This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). |
| 3 | +## Features |
4 | 4 |
|
5 | | -## Available Scripts |
| 5 | +- Multiple tabs for editing multiple files simultaneously |
| 6 | +- Integrated terminal |
| 7 | +- Search and replace functionality |
| 8 | +- Code folding |
| 9 | +- Import files and folders from your local system |
| 10 | +- Download files and folders to your local system |
| 11 | +- Persistent storage of files and folders |
| 12 | +- Autocomplete suggestions |
6 | 13 |
|
7 | | -In the project directory, you can run: |
| 14 | +<br> |
8 | 15 |
|
9 | | -### `npm start` |
| 16 | +## Themes |
10 | 17 |
|
11 | | -Runs the app in the development mode.\ |
12 | | -Open [http://localhost:3000](http://localhost:3000) to view it in the browser. |
| 18 | +The code editor app offers multiple themes to customize the editor's appearance. Themes provide different color schemes and styles, allowing you to personalize the coding environment. Here are some available themes: |
13 | 19 |
|
14 | | -The page will reload if you make edits.\ |
15 | | -You will also see any lint errors in the console. |
| 20 | +- Dark Theme: A sleek and modern dark-themed editor with a dark background and vibrant syntax highlighting colors. It is easy on the eyes and suitable for coding in low-light conditions. |
16 | 21 |
|
17 | | -### `npm test` |
| 22 | +- Light Theme: A clean and bright light-themed editor with a white background and contrasting syntax highlighting colors. It offers a refreshing and professional coding experience. |
18 | 23 |
|
19 | | -Launches the test runner in the interactive watch mode.\ |
20 | | -See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. |
| 24 | +- Monokai Theme: A popular theme inspired by the Monokai color scheme, known for its vibrant and visually appealing syntax highlighting. It provides a stylish and energetic coding environment. |
21 | 25 |
|
22 | | -### `npm run build` |
| 26 | +- Solarized Theme: The Solarized theme is a balanced and well-thought-out color scheme designed for code legibility. It offers both light and dark variants, ensuring comfortable coding in different lighting conditions. |
23 | 27 |
|
24 | | -Builds the app for production to the `build` folder.\ |
25 | | -It correctly bundles React in production mode and optimizes the build for the best performance. |
| 28 | +- Dracula Theme: A dark-themed editor inspired by the popular Dracula color scheme. It features a dark background with contrasting syntax highlighting colors, creating an atmospheric and visually appealing coding environment. |
26 | 29 |
|
27 | | -The build is minified and the filenames include the hashes.\ |
28 | | -Your app is ready to be deployed! |
| 30 | +- Night Owl Theme: A sophisticated dark theme with carefully selected colors for optimal code readability. The Night Owl theme provides a pleasant contrast between the background and syntax elements, making code stand out while reducing eye strain. |
29 | 31 |
|
30 | | -See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. |
| 32 | +You can easily switch between themes within the app to find the one that suits your preferences. |
31 | 33 |
|
32 | | -### `npm run eject` |
| 34 | +<br> |
33 | 35 |
|
34 | | -**Note: this is a one-way operation. Once you `eject`, you can’t go back!** |
| 36 | +## Getting Started |
35 | 37 |
|
36 | | -If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. |
| 38 | +1. Clone the repository: |
37 | 39 |
|
38 | | -Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. |
| 40 | + ```bash |
| 41 | + git clone https://github.com/vickyguptaa7/Code-Verse.git |
| 42 | + ``` |
39 | 43 |
|
40 | | -You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. |
| 44 | +2. Change to the `back-end` directory: |
41 | 45 |
|
42 | | -## Learn More |
| 46 | + ```bash |
| 47 | + cd react-code-editor |
| 48 | + ``` |
43 | 49 |
|
44 | | -You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). |
| 50 | +3. Install the dependencies: |
45 | 51 |
|
46 | | -To learn React, check out the [React documentation](https://reactjs.org/). |
| 52 | + ```bash |
| 53 | + npm install |
| 54 | + ``` |
| 55 | + |
| 56 | +4. Start the development server: |
| 57 | + ```bash |
| 58 | + npm run dev |
| 59 | + ``` |
| 60 | +5. Open your favorite web browser and visit `http://localhost:3000` to access the code verse editor. |
0 commit comments