This script generates a markdown file from the notes you wrote on Frontend Masters course. It needs the exported json with your notes.
- Clone this repository
- Download the json file with your notes from the course platform.
- Add the json file inside
sources
directory, rename it:data.json
. - Launch the script with
npm start
- The file will be generated inside
dist
directory
-
This is an early implementation just for my convenience (an alpha at least), feedback is appreciated.
-
You can generate a version without timestamp links by passing
false
as a second argument to the functiongenerateMarkdown
- Install dependencies
npm install
- Download the json file from Josh Comeau's course platform.
- Add the json file inside
sources
directory, it should be called:notes.json
. - Launch the script with:
npm run josh-course-parser [-- css]
- The file will be generated inside
dist
directory
By default it will parse notes from The Joy Of React, in case you need notes for CSS in React course add -- css
option to the command.