# excalidraw **Repository Path**: steven0lisa/excalidraw ## Basic Information - **Project Name**: excalidraw - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 0 - **Created**: 2020-05-29 - **Last Updated**: 2022-01-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
## Try it now Go to https://excalidraw.com to start sketching. Read our [blog](https://blog.excalidraw.com) and follow the [guides](https://howto.excalidraw.com) to learn more about Excalidraw and how to use it effectively. ## Run the code ### Code Sandbox - Go to https://codesandbox.io/s/github/excalidraw/excalidraw - You may need to sign in with Github and reload the page - You can start coding instantly, and even send PRs from there! ### Local Installation These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. #### Clone the repo ```bash git clone https://github.com/excalidraw/excalidraw.git ``` #### Commands | Command | Description | | --------------------- | --------------------------------- | | `npm install` | Install the dependencies | | `npm start` | Run the project | | `npm run fix` | Reformat all files with Prettier | | `npm test` | Run tests | | `npm run test:update` | Update test snapshots | | `npm run test:code` | Test for formatting with Prettier | ### Docker Installation A production-ready version for deploying to e.g. Kubernetes or OpenShift can be built using Docker. #### Docker Compose ```sh docker-compose up --build -d ``` #### Native Docker ```sh docker build -t excalidraw/excalidraw . docker run --rm -dit --name excalidraw -p 5000:80 excalidraw/excalidraw:latest ``` After building the image and running the container, open