All Projects → webpack-contrib → yaml-frontmatter-loader

webpack-contrib / yaml-frontmatter-loader

Licence: MIT License
[DEPRECATED] Yaml frontmatter loader

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to yaml-frontmatter-loader

counsel-jq
Traverse complex JSON and YAML structures with live feedback
Stars: ✭ 99 (+725%)
Mutual labels:  yaml
standard-loader
webpack loader for linting your code with https://github.com/feross/standard
Stars: ✭ 66 (+450%)
Mutual labels:  webpack-loader
conduit
Simplified Data Exchange for HPC Simulations
Stars: ✭ 114 (+850%)
Mutual labels:  yaml
examples
Example Prismatic components and integrations
Stars: ✭ 23 (+91.67%)
Mutual labels:  yaml
PotentCodables
🧪 PotentCodables - A potent set of implementations and extensions to the Swift Codable system
Stars: ✭ 32 (+166.67%)
Mutual labels:  yaml
dataconf
Simple dataclasses configuration management for Python with hocon/json/yaml/properties/env-vars/dict support.
Stars: ✭ 40 (+233.33%)
Mutual labels:  yaml
openapiclientgen
Generate C# and TypeScript client codes from Open API / Swagger definitions
Stars: ✭ 31 (+158.33%)
Mutual labels:  yaml
yaml
A Laravel YAML parser and config loader
Stars: ✭ 100 (+733.33%)
Mutual labels:  yaml
online-resume
A Jekyll theme for resume / cv based on Markdown. Demo: https://tarrex.github.io/online-resume
Stars: ✭ 27 (+125%)
Mutual labels:  yaml
front
Frontmatter
Stars: ✭ 21 (+75%)
Mutual labels:  yaml
website
Prometheus monitoring mixins
Stars: ✭ 91 (+658.33%)
Mutual labels:  yaml
doo
简单易用的接口管理解决方案,支持接口文档管理、Mock服务,接口测试等功能。接口文档采用 yaml 或 Excel 格式书写,简单快捷,Mock 基于该文档,无需数据库,一条命令秒变 Mock 服务。
Stars: ✭ 36 (+200%)
Mutual labels:  yaml
pyyaml-include
yaml include other yaml
Stars: ✭ 49 (+308.33%)
Mutual labels:  yaml
yaml-front-matter
A to the point yaml front matter parser
Stars: ✭ 200 (+1566.67%)
Mutual labels:  yaml
yaml-test-suite
Comprehensive, language independent Test Suite for YAML
Stars: ✭ 93 (+675%)
Mutual labels:  yaml
yamlful
YAML-based HTTP client code generation
Stars: ✭ 77 (+541.67%)
Mutual labels:  yaml
yajsv
Yet Another JSON Schema Validator [CLI]
Stars: ✭ 42 (+250%)
Mutual labels:  yaml
k8s-1abel
Kubernetes YAML/JSON survival kit
Stars: ✭ 21 (+75%)
Mutual labels:  yaml
carvel-simple-app-on-kubernetes
K8s simple Go app example deployed with k14s tools
Stars: ✭ 23 (+91.67%)
Mutual labels:  yaml
k8s-opa-boilerplate
Boilerplate example of managing OPA with kustomize
Stars: ✭ 14 (+16.67%)
Mutual labels:  yaml

npm node deps tests chat

yaml-frontmatter-loader

YAML frontmatter loader for webpack. Converts YAML in files to JSON.

Requirements

This module requires a minimum of Node v6.9.0 and Webpack v4.0.0.

Getting Started

To begin, you'll need to install yaml-frontmatter-loader:

$ npm install yaml-frontmatter-loader --save-dev

Then add the loader to your webpack config. For example:

const json = require('yaml-frontmatter-loader!./file.md');
// => returns file.md as javascript object
// webpack.config.js
module.exports = {
  module: {
    rules: [
      {
         test: /\.md$/,
         use: [ 'json-loader', 'yaml-frontmatter-loader' ]
      }
    ]
  }
}

And run webpack via your preferred method.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].