@gh-conf/gh-conf-write
v1.1.2
Published
Writes to github config
Downloads
10
Readme
gh-conf-write
Write content to github config file
It reads the github config file and returns it contents. It needs respository path as input to read the config.
Give us a :star: if you like our work :heart:
Please consider donating, if you like my work
Install
$ npm install @gh-conf/gh-conf-write
Usage
const { writeConf } = require('@gh-conf/gh-conf-write');
(async () => {
try {
const writeResult = await writeConf('./gh-conf-write', 'CONTENT');
console.log(writeResult);
/**
* {
* status: 'success',
* message: 'Config updated',
* data: {
* content: 'CONTENT'
* }
* }
**/
} catch (error) {
console.log(error);
}
})();
Contributing
Interested in contributing to this project? You can log any issues or suggestion related to this library here
Read our contributing guide on getting started with contributing to the codebase
Contributors