Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/autumnchris/markdown-previewer

A React.js app that takes given Markdown syntax and outputs a preview that updates as you type.
https://github.com/autumnchris/markdown-previewer

babel css freecodecamp javascript localstorage markdown markdown-previewer react reactjs sass scss webpack

Last synced: 2 days ago
JSON representation

A React.js app that takes given Markdown syntax and outputs a preview that updates as you type.

Awesome Lists containing this project

README

        

# Markdown Previewer

A React.js app that takes given Markdown syntax and outputs a preview that updates as you type.

Inspired by the [Build a Markdown Previewer challenge](https://learn.freecodecamp.org/front-end-libraries/front-end-libraries-projects/build-a-markdown-previewer) as part of the curriculum for the [Front End Development Libraries Certification](https://www.freecodecamp.org/learn/front-end-libraries) on [freeCodeCamp](https://www.freecodecamp.org).

---

## Built With
* [React.js](https://reactjs.org)
* JavaScript
* CSS3
* HTML5
* [Sass](http://sass-lang.com)
* [Node.js](https://nodejs.org/en)
* [Webpack](https://webpack.js.org)
* [Babel](https://babeljs.io)
* [marked](https://www.npmjs.com/package/marked)
* LocalStorage
* [Normalize.css](https://necolas.github.io/normalize.css)
* [Font Awesome](https://fontawesome.com)
* [Google Fonts](https://fonts.google.com)

## Demo

View project demo at [https://autumnchris.github.io/markdown-previewer](https://autumnchris.github.io/markdown-previewer).

## Instructions

After forking and cloning, navigate to the repository in your command line and install the NPM packages:
```
npm install
```

Run the following script in your command line to run the application:
```
npm start
```

Once the server is running, go to `http://localhost:8080` in your browser.

Before committing any changes, run the following script to update your static files for production:
```
npm run build
```