Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
metalsmith-get-contentful
Advanced tools
A Metalsmith plugin to read content from the Contentful API.
Lightweight wrapper around the Contentful API to query content, get the content's fields, and place the fields into metalsmith "files" for later processing. Typically done before the markdown stage.
This plugin works best if your Contentful Content has fields that match up to the YAML data needed for your metalsmith template engine. For example, they should probably have a "title", "template", and, most importantly, "contents".
If your content has a mismatch, see options.msFiles.addYAML
and options.msFiles.postProcess()
.
To grab all "projects", use their field "slug" as a filename, and put them under the path "/projects/{slug}.md"
var getContentful = require('../getContentful.js');
...
.use(getContentful({
client: {
space: '<space_id>',
accessToken: '<access_token>'
},
query : {
content_type: 'project'
},
msFiles : {
idField: 'slug',
filename: "projects/${id}.md"
}
}) )
You must provide:
Default is {}.
postProcess(content)
. For example, if you need to rename fields.If the "file" is already present, getContentful calls done()
with an Error.
After writing this, discovered a very similar approach and code in Bitbucket contentful-data
A different approach is in contentful-metalsmith
leviwheatcroft/metalsmith-contentful also gave me a few ideas.
FAQs
A metalsmith plugin to grab contentful files
The npm package metalsmith-get-contentful receives a total of 1 weekly downloads. As such, metalsmith-get-contentful popularity was classified as not popular.
We found that metalsmith-get-contentful demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.