Git Product home page Git Product logo

write-yaml's Introduction

write-yaml NPM version NPM monthly downloads Linux Build Status

Write YAML. Converts JSON to YAML writes it to the specified file.

Install

Install with npm:

$ npm install --save write-yaml

Install with yarn:

$ yarn add write-yaml

Usage

Add to your javascript/node.js application with the following line of code:

var yaml = require('write-yaml');

async

var data = {language: 'node_js', node_js: ['0.10', '0.11']};

yaml('.travis.yml', data, function(err) {
  // do stuff with err
});

Would write .travis.yml to disk with the following contents:

language: node_js
node_js:
  - "0.10"
  - "0.11"

sync

yaml.sync('.travis.yml', data);

Would write .travis.yml to disk with the following contents:

language: node_js
node_js:
  - "0.10"
  - "0.11"

About

Related projects

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Contributors

Commits Contributor
12 jonschlinkert
2 shinnn

Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Running tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test

Author

Jon Schlinkert

License

Copyright © 2017, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.5.0, on April 12, 2017.

write-yaml's People

Contributors

jonschlinkert avatar shinnn avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

write-yaml's Issues

Write markdown files with content

Hi,
how can I specify a content in the json source object that is not a frontmatter ? I want to generate a markdown file with frontmatter and a content like this :

---
title: myTitle
date: myDate
---
myContent

Not support variables call

Hi

I need this file

service: ApiFile
custom:
  dev: ${file(variables.json):dev}
  prod: ${file(variables.json):prod}
  beta: ${file(variables.json):beta}
provider:
  name: aws
  stage: ${opt:stage, 'dev'}
  runtime: nodejs6.10
  region: ${opt:region, 'us-east-2'}
  timeout: 10
  deploymentBucket:
    name: ${opt:bukect, 'translate-elixir-node-functions'}
  environment:
    HOST_DB: ${self:custom.${opt:stage, 'dev'}.HOST_DB}
    USER_DB: ${self:custom.${opt:stage, 'dev'}.USER_DB}
    PWD_DB: ${self:custom.${opt:stage, 'dev'}.PWD_DB}
    NAME_DB: ${self:custom.${opt:stage, 'dev'}.NAME_DB}
    PORT_DB: ${self:custom.${opt:stage, 'dev'}.PORT_DB}
    PEM: ${self:custom.${opt:stage, 'dev'}.PEM}
    STAGE: ${opt:stage, 'dev'}
functions:
  getEsriToken:
    handler: EsriToken
    description: This function get token from esri
    events:
      - http:
          path: esriToken
          method: get

But when put

{
  "service": "ApiFile",
  "custom": {
    "dev": "${file(variables.json):dev}",
    "prod": "${file(variables.json):prod}",
    "beta": "${file(variables.json):beta}"
  },
  "provider": {
    "name": "aws",
    "stage": "${opt:stage, 'dev'}",
    "runtime": "nodejs6.10",
    "region": "${opt:region, 'us-east-2'}",
    "timeout": 10,
    "deploymentBucket": {
      "name": "${opt:bukect, ''translate-elixir-node-functions''}"
    },
    "environment": {
      "HOST_DB": "${self:custom.${opt:stage, 'dev'}.HOST_DB}",
      "USER_DB": "${self:custom.${opt:stage, 'dev'}.USER_DB}",
      "PWD_DB": "${self:custom.${opt:stage, 'dev'}.PWD_DB}",
      "NAME_DB": "${self:custom.${opt:stage, 'dev'}.NAME_DB}",
      "PORT_DB": "${self:custom.${opt:stage, 'dev'}.PORT_DB}",
      "PEM": "${self:custom.${opt:stage, 'dev'}.PEM}",
      "STAGE": "${opt:stage, 'dev'}"
    }
  },
  "functions": {
    "getEsriToken": {
      "handler": "compiled/lidar.getEsriToken",
      "description": "This function get token from esri",
      "events": [
        {
          "http": {
            "path": "getEsriToken",
            "method": "get"
          }
        }
      ]
    }
  }
}

Its gen

service: ApiFile
custom:
  dev: '${file(variables.json):dev}'
  prod: '${file(variables.json):prod}'
  beta: '${file(variables.json):beta}'
provider:
  name: aws
  stage: '${opt:stage, ''dev''}'
  runtime: nodejs6.10
  region: '${opt:region, ''us-east-2''}'
  timeout: 10
  deploymentBucket:
    name: '${opt:bukect, ''''translate-elixir-node-functions''''}'
  environment:
    HOST_DB: '${self:custom.${opt:stage, ''dev''}.HOST_DB}'
    USER_DB: '${self:custom.${opt:stage, ''dev''}.USER_DB}'
    PWD_DB: '${self:custom.${opt:stage, ''dev''}.PWD_DB}'
    NAME_DB: '${self:custom.${opt:stage, ''dev''}.NAME_DB}'
    PORT_DB: '${self:custom.${opt:stage, ''dev''}.PORT_DB}'
    PEM: '${self:custom.${opt:stage, ''dev''}.PEM}'
    STAGE: '${opt:stage, ''dev''}'
functions:
  getEsriToken:
    handler: compiled/lidar.getEsriToken
    description: This function get token from esri
    events:
      - http:
          path: getEsriToken
          method: get

Code with ' in the vars, what I can to do?
thanks

Write an 8-character field in yml that starts with 0 in quotation marks

I have a value in my YML file which is composed of 8 numbers and the value of this field varies according to the configuration needs of it.
Is there any way to write fields with 8 digits and that start with 0 using quotation marks?
The field is a String however whenever I write the YML file the library leaves the field without quotes.
If I try to concatenate a String with the quotation marks and the information I have the library places 2 additional quotation marks at the beginning and end of the file.
Is there any way to differentiate this in the library?
So that it does not consider my String to be an octal?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.