In this project, we'll build an interactive MDX-based blog using Next 13:
This is a Next 13 project. You'll first need to install NPM dependencies, and then run a local development server. Here are the relevant terminal commands:
# Install dependencies:
npm install
# Run a development server:
npm run dev
To create new components, you can use this helper script. It saves you a bit of time, creating all the files and adding the standard code:
# Create a new component:
npm run new-component [TheNewComponentName]
Using a Markdown renderer
For best results, you should use a Markdown renderer to view this file. This README includes lots of embedded images and screen recordings, and you'll need a Markdown renderer to be able to view them.
In VS Code, you can render this README by opening the command palette (
Ctrl
+Shift
+P
on Windows/Linux,â
+Shift
+P
on MacOS), typing âMarkdownâ, and selecting âMarkdown: Open Previewâ.
-
When you run a dev server, you may notice a warning: You have enabled experimental feature (outputFileTracingIncludes). This warning can safely be ignored.
outputFileTracingIncludes
is a configuration option required to make sure that our MDX files are included when deploying our application to Vercel.- If you're curious about this, you can learn more in Module 6 of the course
-
If the dev server seems to be stuck on a stale error, and restarting the dev server doesn't help, you can clear Next's cache by deleting the
.next/cache
subdirectory. Don't worry about losing anything important: everything inside the.next
directory is derived from the rest of the codebase. -
If you get stuck, you can definitely ask for help on Discord! Post your question in the #joy-of-react Discord channel.
Let's update the homepage so that it shows a list of blog posts:
Acceptance Criteria:
- One
<BlogSummaryCard>
element should be rendered for each MDX file in the/content
directory. - A unique
key
should be given to each element. - Each
<BlogSummaryCard>
element should be given the following props:slug
, matching the filename (eg.javascript-modulo-operator
)title
,abstract
, andpublishedOn
, all passed along from the frontmatter for each post.
Note: To help with some of the Node file-manipulation stuff, a helper module has been provided, /src/helpers/file-helpers.js
. You can use the getBlogPostList
function to gather the full list of blog posts. Alternatively, if you some experience using Node, feel free to solve this exercise without using this helper.
When clicking on one of the blog posts on the homepage, we're taken to the dynamic blog post route:
In this exercise, we'll use next-mdx-remote to render the MDX associated with the selected blog post.
Acceptance Criteria:
- The MDX corresponding to the selected blog post should be rendered.
- For example, visiting
/javascript-modulo-operator
should display all of the content included in/content/javascript-modulo-operator.mdx
.
- For example, visiting
- The raw content from the MDX file should be passed to the
<MDXRemote>
component.
The final result should look like this:
Note: Inside /src/helpers/file-helpers.js
, you'll find a function called loadBlogPost
. You can use this helper function if you're not comfortable with the Node fs
module.
Resources:
- âMDX in Next.jsâ lesson
- next-mdx-remote docs
- Be sure to use the RSC version of the package!
- âDynamic Segmentsâ lesson
As we learned in Module 6, the Next.js Metadata API allows us to specify site metadata, like adding a <title>
tag, or various <meta>
tags. Let's use this API to add metadata to our blog.
For example, here's the metadata we should include, in the <head>
:
<title>Bits & Bytes</title>
<meta
name="description"
content="A wonderful blog about JavaScript"
/>
And on the blog post page, it should look something like this:
<title>
Understanding the JavaScript Modulo Operator ⢠Bits & Bytes
</title>
<meta
name="description"
content="One of the most commonly-misunderstood operatorsâŚ"
/>
Acceptance Criteria:
- The homepage and blog post pages should include the metadata specified above.
- For the blog post page, the metadata should match the particular blog post. The
<title>
should include the blog post'stitle
, and the<meta name="description">
should use theabstract
.
- For the blog post page, the metadata should match the particular blog post. The
- The name of the blog, âBits & Bytesâ, shouldn't be hardcoded. It should use the
BLOG_TITLE
constant found in/src/constants.js
. - Performance should be optimized, as necessary, using the React Cache API.
Resources:
Our MDX files include code snippets. By default, they'll be rendered by <MDXRemote>
as a <pre>
tag. This works, but it's not very ⨠aesthetic â¨. We can improve the presentation using Bright, the React-Server-Components-based syntax highlighter we saw in Module 6.
This package is already installed in this repository, and is being used inside the /src/components/CodeSnippet
component. Your mission in this exercise is to render this CodeSnippet
component for every code snippet inside the MDX files.
The end result should look like this:
Acceptance Criteria:
- Code snippets inside blog posts should be syntax-highlighted.
- You should use the
CodeSnippet
component, found in/src/components/CodeSnippet
Resources:
- Bright docs
- âMDX in Next.jsâ lesson
- next-mdx-remote docs
- âRevealable Code Snippetsâ exercise
So far, our blog posts don't really feature anything super custom. Let's change that.
The âUnderstanding the JavaScript Modulo Operatorâ blog post makes use of two different embedded widgets. In this exercise, we'll focus on the first one, DivisionGroupsDemo
.
This is a significant challenge. To help keep things a bit more manageable, we'll break this exercise up into 3 parts.
First thing's first, we need to get this component rendering!
Inside the javascript-modulo-operator.mdx
file, you'll notice that some code has been commented out:
**TODO: Uncomment DivisionGroupsDemo**
{/* <DivisionGroupsDemo /> */}
If you uncomment this code, you'll get an error telling you that next-mdx-remote doesn't know how to resolve the DivisionGroupsDemo
.
This component exists, and you can find it in /src/components/DivisionGroupsDemo/DivisionGroupsDemo.js
. Your mission in the first part of this exercise is to resolve this component, fixing the issue and getting it rendering, like so:
Acceptance Criteria:
- Within
javascript-modulo-operator.mdx
, the first<DivisionGroupsDemo>
element should be uncommented, and rendering without issue. - Your solution should scale well, even if there are 100s of blog posts. You'll want to use lazy loading to make sure that the
DivisionGroupsDemo
component is only downloaded when it's rendered.
Resources:
As it stands, the DivisionGroupsDemo
widget works alright, but it does feel pretty abrupt:
Let's implement some layout animations, so that the pink circles being grouped up glide smoothly when the number of groups changes:
Acceptance Criteria:
- When the number of groups changes, the pink circles should glide smoothly, using Framer Motion layout animations.
- For now, you can ignore all of the stuff in the
includeRemainderArea
conditional; we'll deal with that in the next part of this exercise. - This animation should respect user preferences. If they've toggled the âReduce motionâ setting in their operating system, the pink circles should jump immediately into their new groups.
- To test this, you can use emulation inside the devtools. See the âMotion Accessibilityâ lesson for more info.
Resources:
- âLayout Animationsâ lesson
- âShared Layoutâ lesson
- âWorking With Groupsâ lesson
- âMotion Accessibilityâ lesson
If you keep scrolling down inside javascript-modulo-operator.mdx
, you'll notice another instance of DivisionGroupsDemo
which has been commented out:
**TODO: Uncomment DivisionGroupsDemo**
{/* <DivisionGroupsDemo includeRemainderArea={true} numOfItems={11} initialNumOfGroups={4} /> */}
If you haven't already, you can uncomment this second DivisionGroupsDemo
element. Your mission in this final part of the exercise is to ensure that the layout animations continue working as expected:
There's a subtle thing here: We want elements entering the Remainder Area to enter from the right, not the left. This GIF shows the difference:
NOTE: to help illustrate the difference, I've given the items different colors/shapes in this GIF. You don't need to incorporate this change; your items should all be pink circles.
Acceptance Criteria:
- In the second
DivisionGroupsDemo
element, a new âRemainder areaâ is added. The pink circles should be animated when moving to/from this remainder area, the same as they are when moving between groups. - The pink circles should be added to the end of the remainder area, stacking on the right. They shouldn't "cross over" and sit at the front. See the GIF above for the exact effect we're after.
Resources:
Our âUnderstanding the JavaScript Modulo Operatorâ blog post has one more embedded widget, CircularColorsDemo
:
This widget demonstrates how the Modulo operator can be used to select items from an array in a circular manner. A timer climbs from 0 to infinity, and that linear value is used to pluck one of three colors, circling back to the front on each 3rd value.
None of the client-side logic has been implemented. To solve this exercise, you'll need to rely on the fundamentals we saw back in Module 2 and Module 3.
Acceptance Criteria:
- Clicking the âPlayâ button should start a long-running process which increments the
timeElapsed
value by 1 every second, like a stopwatch. - The
selectedColor
should be calculated using thetimeElapsed
. It's shown as a black rectangle around 1 of the colors, and it should cycle through the 3 colors as shown in the GIF above. - When the stopwatch is running, the âPlayâ button should switch to a âPauseâ button, using the
Pause
icon. Clicking the âPauseâ button should stop the timer. - Clicking the âResetâ button should stop the timer, and reset the
timeElapsed
to 0. - A layout animation should be used on the
selectedColor
outline, causing it to glide smoothly between the 3 colors.- Like all layout animations, this should be disabled if the user has enabled the âReduce motionâ setting.
Resources:
- The blog post itself! This is very meta, but the blog post we've been working on details how the Modulo operator works, and you'll want to use this operator in your solution.
- âSide Effectsâ set of lessons from Module 3
- In particular, the âDigital Clockâ Exercise might be helpful.
Inside the site header, we have a little sun icon. As of right now, it doesn't do anything. Your mission in this exercise is to wire it up so that it toggles between light mode and dark mode:
Inside the root layout (/src/app/layout.js
), you'll see that the theme is currently being hardcoded as 'light'
. If you manually change this value to 'dark'
, the site will flip to the dark mode color theme. Your mission is to expand this implementation so that it can be toggled by the user, with their preference being persisted.
Acceptance Criteria:
- Clicking the Sun icon in the header should immediately flip to the dark color theme.
- The icon within this button should match the theme: a sun in light mode, a moon in dark mode.
- The user's saved value should be remembered, so that if they refresh the page, the colors don't change.
- This should be seamless, without any awkward âflash of light modeâ, where the wrong colors are shown for a brief moment.
Resources:
Phew! We've made it through the full set of standard exercises.
There's a couple more things we should do to make this blog feel a bit more complete. I'll warn you now: I haven't shown you how to solve the exercises in this section. You'll need to do some additional research and experimentation to figure out how to solve these problems.
Don't worry, though: I'll be sure to point you in the right direction, and I'll share my solution so you can see how I'd solve these problems.
A surprising number of people prefer to read blog posts using an RSS reader. An RSS reader is a piece of software that lets users follow specific blogs, to be notified when new content is published.
For example, Feedly is an RSS reader showing new posts from some of the blogs I follow:
In order for people to add our blog to their RSS readers, we need to produce an RSS feed. This is an XML document that contains all the info these readers need. For example, you can check out the RSS feed I publish on my official blog here:
Our blog currently includes a link to the RSS feed, using the typical RSS icon:
Right now, it links to a feed that doesn't exist. Your mission in this stretch goal should be to produce an RSS feed.
Acceptance Criteria:
- Visiting
/rss.xml
should return an XML document that lists out all of the posts, in reverse-chronological order (newest posts first).
Tips and hints:
There are two viable approaches here:
-
You can generate the XML file during the build, dropping the XML file in the
/public
directory. You can use aprebuild
NPM script to automatically do some work before thebuild
script runs. See the NPM docs for more information. -
You can generate the XML file on-demand, when the user visits
/rss.xml
, using a Next.js Route Handler. Route handlers allow us to build API endpoints that run on the server and can do things like generate custom responses.
To generate the RSS feed itself, you can use an NPM dependency. I use the rss NPM package. It's fantastic.
To get the list of blog posts, you can reuse the getBlogPostList
function we saw in Exercise 1.
If you opt to go the âon-demandâ route, you'll need to set a specific header for everything to work correctly: Content-Type: application/xml
. You can set headers using a Response
object, as detailed in the Route Handlers docs.
In this project, we're using a dynamic route segment for the postSlug
. We look up the blog post based on this route parameter.
But what if the user enters an invalid slug? For example, maybe they make a typo and try to visit /javascritp-mdoulo-operatro
. Or enter a complete gibberish URL like /fdjsmkl
.
As it stands, we get a pretty funky error:
Error: ENOENT: no such file or directory, open '/project-blog/content/fdjsmkl.mdx'
Your mission in this exercise is to instead render a â404 not foundâ page:
Acceptance Criteria:
- Visiting an invalid URL should show the user a 404-style error.
- It isn't sufficient to render an
<h1>404 Not Found</h1>
within thepage.js
component. We want to render an actual 404 page, with a 404 status code and the correct meta tags. This is important for SEO.
Gotchas:
There's two things to be aware of, before you start work on this:
- Next has an official way of handling 404 errors, but it changed recently. In the old âPagesâ router, we created 404 pages using a special
404.js
file. This is not how we do things in the newer App Router. Instead, we want to use thenot-found.js
file. See the docs links below. - There's an open bug when it comes to putting
not-found.js
components inside dynamic routes. It doesn't currently work. And so, we'll solve this problem with a globalnot-found.js
file.
Tips and hints:
To signal to Next that a 404 page should be triggered, you'll want to invoke the notFound() function. By default, this shows a not-very-aesthetic 404 message. We can replace this by creating a not-found.js
file inside our /app
directory.
So far in this project, all of the styles have been provided, but in this case, no styles exist. Feel free to create a new CSS Module for the not-found
styles.
Our blog is looking pretty darn good. đ
However, this is really just the beginning. There are so many things we could do, so many interesting avenues to explore!
From this point onwards, it's up to you what you want to do. Here are some suggestions:
- Create an interactive code playground component with Sandpack.
- Add tags and/or categories.
- Add more than 2 color themes.
- Add a "Table of Contents" component that plucks out the headings from the blog post.
- Include a âCommentsâ section, using something like webmentions, loaded with Suspense!
- Create custom-generated OpenGraph images using vercel/og
If you've been thinking about starting a developer blog, this project should serve as an excellent foundation for you to build upon. Just be sure to abide by the conditions in the LICENSE.md file.
I can't wait to see where you take it!