This is the new website, hopefully providing a new way to access Scramjet's documentation.

The docs are working pretty much as they were (old url's should be getting redirected), however we have a new common page and more civilised version of the documentation itself - feel free to check out the docs section here.

On this blog section we aim to publish examples and general ideas on using scramjet and tools around it. If you happen to have an interesting story or a use case you'd like us to take a look at, please share it with us.

We'll be working on providing more features here, feel free to raise a new issue on GitHub.


_10
require('scramjet')
_10
.StringStream
_10
.from('https://scramjet.eu/docs/')
_10
.lines()
_10
.filter(x => x.startsWith('#'))
_10
.parse(x => ({heading: x.match(/^#+/)[0].length, title: x.replace(/^#+/, '')))
_10
.JSONStringify()
_10
.pipe(process.stdout);