A markdown editor written in React , with a minimalistic approach
This project is currently in development. Basic markdown rendering is there , advanced features will be developed shortly.
Clone down this repository. You will need node
and npm
installed globally on your machine.
Installation:
npm install
Run local dev server:
npm run start
To Run all tests:
npm run test
To Run unit tests:
npm run test:unit
To Run e2e tests headless:
npm run test:e2e
To Run e2e tests with ui:
npm run test:e2e:ui
To Run Linter:
npm run lint
To Start local server:
npm run start
To Visit App:
localhost:1234
To build for production
npm run build
- I want a to build on top of showdown a editor with more user friendly features
- The basic implementation is for desktop only
- the project makes use of the following project/tools :
- parcel
- react
- showdown
- react testing library
- playwright
- typescript
- eslint
- for css I started with no framework in mind, but tailwind is a good candidate when more features will come in.