Home > Net >  I wanted to make a blog in pure react js and Nodejs(express,mongodb) . Also i can post code snippets
I wanted to make a blog in pure react js and Nodejs(express,mongodb) . Also i can post code snippets

Time:07-02

An example of a blogpost Example of Blog post

CodePudding user response:

If you want to use pure React, you might want to use something like Create React App, or Vite React. You can pull in a Markdown library like react-markdown to parse blog posts.

I would also recommend using something like Astro (https://astro.build/), which can parse markdown and React natively.

CodePudding user response:

you could use libraries like CKEditor, and Quill for advanced editors where you could add some images, and code snippets. and send the value of that editor to your server.

but you might like react-markdown if you don't like editors.

  • Related