This is a Livecoding Recap β an almost-weekly post about interesting things discovered while livecoding. Usually shorter than 500 words. Often with pictures. Livecoding happens almost every Sunday at 2pm PDT on multiple channels. You should follow My Youtube channel to catch me live.
Ah, it's good to be back. It's been what, a month? Long time no see as the first person to say hi in the chatroom said.
We continued to work on GatsbyJS. That one feature I want to add: Make links in markdown tables of contents absolute.
Instead of #some-title
the link should be /page-slug#some-title
. That way users can put tables of contents on their index pages and link into documents directly.
The first difficulty was using VSCode. I wanted to give it a fairer shot at impressing me after all the configuration advice people gave me on Friday.
Also, this killer feature looks cool and I want it.
plus then you can slowly learn to become hopelessly dependent on this feature: pic.twitter.com/U0kUwijD6j
β Jason Miller π¦β (@_developit) November 3, 2017
I'll talk more about VSCode after I use it some more.
The other difficulty was that I have no idea what I'm doing. At first, I was editing the wrong file. My code kept vanishing every time compilation did its thing.
Turns out there's a big difference between gatsby-transform-remark/extend-node-type.js
and gatsby-transform-remark/src/extend-node-type.js
.
Confusing for a newbie that those two files are so close together, but it makes sense. Gatsby uses something called Lerna to create a multirepo. Every folder inside the repository is its own package.
When I figured that out, I had the bright idea to update my local clone to latest master.
It did not go so well.
It went so not well, in fact, that we never got to the real work. I don't know how many times I installed and reinstalled node_modules
, but nothing worked.
This ate all the time I had, and we got nothing done.
I mean, sure, we explored how the markdown AST stuff works, where we need to add the slug (it's deep inside children of children), and made a reasonable hypothesis that we can get the slug using markdownNode.fields.slug
.
The hypothesis stems from this: We know that each Gatsby node has a fields.slug
. Don't know where it comes from, but docs assure us it's there. Not sure markdownNode
is that node, but what else could it be?
markdownNode
is the node that we are extending, therefore it must be the same thing as a normal Gatsby node. It's just called markdownNode
here because we're operating on markdown.
This is the function we're tweaking by the way π
async function getTableOfContents(markdownNode) {const cachedToc = await cache.get(tableOfContentsCacheKey(markdownNode));if (cachedToc) {return cachedToc;} else {const ast = await getAST(markdownNode);const tocAst = mdastToToc(ast);let toc;if (tocAst.map) {toc = hastToHTML(toHAST(tocAst.map));} else {toc = ``;}cache.set(tableOfContentsCacheKey(markdownNode), toc);return toc;}}
That tocAst
is where we inject our tweak. I think π€
Oh right! The newbie mistake fix π Matthew of Gatsby fame informed me that my yarn.lock
was probably out of date. It was.
Learned something new?
Want to become a high value JavaScript expert?
Here's how it works π
Leave your email and I'll send you an Interactive Modern JavaScript Cheatsheet πright away. After that you'll get thoughtfully written emails every week about React, JavaScript, and your career. Lessons learned over my 20 years in the industry working with companies ranging from tiny startups to Fortune5 behemoths.
Start with an interactive cheatsheet π
Then get thoughtful letters π on mindsets, tactics, and technical skills for your career.
"Man, love your simple writing! Yours is the only email I open from marketers and only blog that I give a fuck to read & scroll till the end. And wow always take away lessons with me. Inspiring! And very relatable. π"
Have a burning question that you think I can answer?Β I don't have all of the answers, but I have some! Hit me up on twitter or book a 30min ama for in-depth help.
Ready to Stop copy pasting D3 examples and create data visualizations of your own? Β Learn how to build scalable dataviz components your whole team can understand with React for Data Visualization
Curious about Serverless and the modern backend? Check out Serverless Handbook, modern backend for the frontend engineer.
Ready to learn how it all fits together and build a modern webapp from scratch? Learn how to launch a webapp and make your first π° on the side with ServerlessReact.Dev
Want to brush up on your modern JavaScript syntax?Β Check out my interactive cheatsheet: es6cheatsheet.com
By the way, just in case no one has told you it yet today: I love and appreciate you for who you areΒ β€οΈ