Install Plugins for Transforming Markdown with Gatsby

Taylor Bell
InstructorTaylor Bell

Share this video with your friends

Send Tweet

Gatsby makes use of various plugins for building static sites. Here we will install gatsby-source-filesystem and gatsby-transformer-remark to work with locally stored Markdown files.

Darrel
Darrel
~ 7 years ago

I found that the gatsby commands needed to be ran separately: npm install --save gatsby-source-filesystem@next npm install --save gatsby-transformer-remark@next

When I tried to run as npm install --save gatsby-source-filesystem@next gatsby-transformer-remark@next it threw a 404 on the last source

Rion
Rion
~ 6 years ago

I found it hard to focus on the code text with those editor crosshairs

Taylor Bell
Taylor Bellinstructor
~ 6 years ago

Hi Rion, I've removed this from my vimrc so they won't show up in future videos.

Alexander Zubko
Alexander Zubko
~ 6 years ago

I think @next isn't needed anymore.

With @next: "gatsby-source-filesystem": "^2.0.1-rc.6", "gatsby-transformer-remark": "^2.1.1-rc.5",

Without @next: "gatsby-source-filesystem": "^2.0.12", "gatsby-transformer-remark": "^2.1.15",

Subhash Bhushan
Subhash Bhushan
~ 5 years ago

gatsby-config.js is now created automatically when the project folder is initialized.