A MERN web-app code notebook https://daeekang-til.netlify.app/ API is hosted on AWS lambda so there is a bit of a cold start load time
Deployed on netlify and aws lambda
Basically a recreation of VuePress entirely in React.
Take notes in markdown, that's it B-) Markdown text is saved in a mongodb database and when fetched, is parsed and compiled into html with marked.js. When creating subheaders in markdown, the website will automatically parse and add the subheader as a link to the sidebar and search engine. is cool man
Inspired by : https://github.com/milooy/TIL
Instead of hosting data through saving in the repository, I wanted to have it run through a database for ease.
The root directory will need a .env file containing:
- DB = 'ur mongodb url here!!'
- PORT = SOMEPORTNUMBER
- CORS_ORIGINS=http://localhost:8080
both: npm start in the root directory -> backend npm start in the client directory -> frontend