Skip to content

michalcz17/easy-yml

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

easy-yml

The easy way to make, edit and read yaml files with node.js

Description

It can be used very simple, by a few functions you can make, edit or read any yaml file in data folder in your project.

Documentation

// Import easy-yml
const file = require("easy-yml");


// Store value into file
file.setData("filename", "variable", "value");

// File filename.yml:
// ----------------
// file: true
// variable: value


// Get value from file
var output = file.getData("filename", "variable");
console.log(output); // value

About

The easy way to make, edit and read yml files with node.js

Resources

Stars

Watchers

Forks

Packages

No packages published