Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
metalsmith
Advanced tools
An extremely simple, pluggable static site generator.
In Metalsmith, all of the logic is handled by plugins. You simply chain them together. Here's what the simplest blog looks like...
Metalsmith(__dirname)
.use(markdown())
.use(templates('handlebars'))
.build(function(err) {
if (err) throw err;
});
...but what if you want to get fancier by hiding your unfinished drafts and using custom permalinks? Just add plugins...
Metalsmith(__dirname)
.use(drafts())
.use(markdown())
.use(permalinks('posts/:title'))
.use(templates('handlebars'))
.build(function(err) {
if (err) throw err;
});
...it's as easy as that!
$ npm install metalsmith
Check out the website for a list of plugins.
Metalsmith works in three simple steps:
Each plugin is invoked with the contents of the source directory, and each file can contain YAML front-matter that will be attached as metadata, so a simple file like...
---
title: A Catchy Title
date: 2014-12-01
---
An informative article.
...would be parsed into...
{
'path/to/my-file.md': {
title: 'A Catchy Title',
date: new Date('2014-12-01'),
contents: new Buffer('An informative article.')
}
}
...which any of the plugins can then manipulate however they want. And writing the plugins is incredibly simple, just take a look at the example drafts plugin.
Of course they can get a lot more complicated too. That's what makes Metalsmith powerful; the plugins can do anything you want!
We keep referring to Metalsmith as a "static site generator", but it's a lot more than that. Since everything is a plugin, the core library is actually just an abstraction for manipulating a directory of files.
Which means you could just as easily use it to make...
#metalsmith
on freenode!In addition to a simple Javascript API, the Metalsmith CLI can read configuration from a metalsmith.json
file, so that you can build static-site generators similar to Jekyll or Wintersmith easily. The example blog above would be configured like this:
{
"source": "src",
"destination": "build",
"plugins": {
"metalsmith-drafts": true,
"metalsmith-markdown": true,
"metalsmith-permalinks": "posts/:title",
"metalsmith-templates": "handlebars"
}
}
And then just install metalsmith
and the plugins and run the metalsmith CLI...
$ node_modules/.bin/metalsmith
Metalsmith · reading configuration from: /path/to/metalsmith.json
Metalsmith · successfully built to: /path/to/build
Or if you install them globally, you can just use:
$ metalsmith
Metalsmith · reading configuration from: /path/to/metalsmith.json
Metalsmith · successfully built to: /path/to/build
Checkout the static site, Jekyll or Wintersmith examples to see the CLI in action.
Checkout the project scaffolder or build tool examples to see a real example of the Javascript API in use.
Create a new Metalsmith
instance for a working dir
.
Add the given plugin
function to the middleware stack. Metalsmith uses
ware to support middleware, so plugins
should follow the same pattern of taking arguments of (files, metadata, callback)
,
modifying the files
or metadata
argument by reference, and then
calling callback
to trigger the next step.
Build with the given settings and call fn(err, files)
.
Set the relative path
to the source directory, or get the full one if no path
is provided. The source directory defaults to ./src
.
Set the relative path
to the destination directory, or get the full one if no path
is provided. The destination directory defaults to ./build
.
Set whether to remove the destination directory before writing to it, or get the current setting. Defaults to true
.
Get the global metadata. This is useful for plugins that want to set global-level metadata that can be applied to all files.
Resolve any amount of paths...
relative to the working directory. This is useful for plugins who want to read extra assets from another directory, for example ./templates
.
Run all of the middleware functions on a dictionary of files
and callback with fn(err, files)
, where files
is the altered dictionary.
Add metadata to your files to access these build features. By default, Metalsmith uses a few different metadata fields:
contents
- The body content of the file, not including any YAML frontmatter.mode
- The numeric version of the file's mode.You can add your own metadata in two ways:
Set the mode of the file. For example,
$ cat cleanup.sh
--
mode: 0764
--
rm -rf .
would be built with mode -rwxrw-r--
, i.e. user-executable.
The MIT License (MIT)
Copyright © 2014, Segment.io <friends@segment.io>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
[1.3.0] - 2015-02-06
FAQs
An extremely simple, pluggable static site generator.
The npm package metalsmith receives a total of 24,065 weekly downloads. As such, metalsmith popularity was classified as popular.
We found that metalsmith demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.