建立一個簡單的部落格

假設你已安裝 node 和 npm 並且可用,請建立一個包含有效 package.json 的專案資料夾。安裝必要的依賴項:

npm install --save-dev metalsmith metalsmith-in-place handlebars

在專案資料夾的根目錄下建立名為 build.js 的檔案,其中包含以下內容:

var metalsmith = require('metalsmith');
var handlebars = require('handlebars');
var inPlace = require('metalsmith-in-place');

Metalsmith(__dirname)
  .use(inPlace('handlebars'))
  .build(function(err) {
    if (err) throw err;
    console.log('Build finished!');
  });

在專案資料夾的根目錄下建立名為 src 的資料夾。在 src 中建立 index.html,包含以下內容:

執行 node build.js 現在將在 src 中構建所有檔案。執行此命令後,你的 build 資料夾中將包含 index.html,其中包含以下內容:

<h1>My awesome blog</h1>