🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

metalsmith-forestry-starter

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

metalsmith-forestry-starter

The Metalsmith Forestry starter

latest
npmnpm
Version
0.0.4
Version published
Weekly downloads
9
Maintainers
1
Weekly downloads
 
Created
Source

Metalsmith ForestryIO

Metalsmith Forestry starter

Based on the Metalsmith bare-bones starter. This starter is setup for content editing with the ForestryIO CMS. See the demo site here.

Quick start

  • Create a Metalsmith site.

    Clone the starter repository to create a new site.

    git clone https://github.com/wernerglinka/metalsmith-forestry-starter.git new-site 
    
  • Start developing.

    Navigate into your new site’s directory and start it up.

    cd new-site/
    npm install
    npm start
    
  • Open the source code and start editing!

    Your site is now running at http://localhost:3000!

    Open the new-site directory in your code editor of choice and edit src/content/index.md. Save your changes and the browser will update in real time!

What's included?

A quick look at the top-level files and directories you'll see in this Metalsmith project.

.
├── node_modules
├── src
├── layouts
├── .eslintrc.yml
├── .gitignore
├── .prettierignore
├── .prettierrc
├── LICENSE
├── metalsmith.js
├── package-lock.json
├── package.json
└── README.md
  • node_modules: This directory contains all the node modules that your project depends on.

  • src: This directory will contain all the content that makes up your site.

  • layouts: This directory will contain all the layout templates and template partials that will be used to render your site.

  • .eslintrc: This file contains all rules foir eslint.

  • .gitignore: This file tells git which files it should not track / not maintain a version history for.

  • .prettierignore: This file tells prettier what files it should ignore.

  • .prettierrc: This is a configuration file for Prettier. Prettier is a tool to help keep the formatting of your code consistent.

  • LICENSE: This Metalsmith starter is licensed under the MIT license.

  • metalsmith.js: This is the Metalsmith build file.

  • package-lock.json (See package.json below, first). This is an automatically generated file based on the exact versions of your npm dependencies that were installed for your project. (You won’t change this file directly).

  • package.json: A manifest file for Node.js projects, which includes things like metadata (the project’s name, author, etc). This manifest is how npm knows which packages to install for your project.

  • README.md: A text file containing useful reference information about your project.

Learn more about Metalsmith

Looking for more guidance? Full documentation for Metalsmith can be found on the website.

Deploy

Deploy and Host on any static hosting service. For example Netlify, Vercel or Cloudflare Pages.

Here is an article about how to deploy Metalsmith on Netlify.

Keywords

metalsmith

FAQs

Package last updated on 22 Mar 2023

Did you know?

Socket

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.

Install

Related posts