github.com/markdeck-project
└── @markdeck/core: abstract markdown into multiple htmls
└── @markdeck/bundler: like parcel build
└── @markdeck/serve: like next
└── @markdeck/now: deploy with ZEIT now serverless
└── @markdeck/HMML: md -> .hmml (Hypermarkdown markup language)
└── @markdeck/theme: more themes(vanilla, uber, airbnb)
└── @markdeck/marketplace: a market place for themes
└── @markdeck/studio: a online WYSIWYG editor
babel script.js --out-file script-compiled.js
babel src --out-dir lib
next
next start
next build
next export
package.json
{
"scripts": {
"dev": "next",
"build": "next build",
"export": "npm run build && next export",
"start": "next start"
}
}