UNPKG

2.83 kBMarkdownView Raw
1askconfig
2==========
3
4<!---
5This file is generated by ape-tmpl. Do not update manually.
6--->
7
8<!-- Badge Start -->
9<a name="badges"></a>
10
11[![Build Status][bd_travis_shield_url]][bd_travis_url]
12[![Code Climate][bd_codeclimate_shield_url]][bd_codeclimate_url]
13[![Code Coverage][bd_codeclimate_coverage_shield_url]][bd_codeclimate_url]
14[![npm Version][bd_npm_shield_url]][bd_npm_url]
15[![JS Standard][bd_standard_shield_url]][bd_standard_url]
16
17[bd_repo_url]: https://github.com/okunishinishi/node-askconfig
18[bd_travis_url]: http://travis-ci.org/okunishinishi/node-askconfig
19[bd_travis_shield_url]: http://img.shields.io/travis/okunishinishi/node-askconfig.svg?style=flat
20[bd_travis_com_url]: http://travis-ci.com/okunishinishi/node-askconfig
21[bd_travis_com_shield_url]: https://api.travis-ci.com/okunishinishi/node-askconfig.svg?token=
22[bd_license_url]: https://github.com/okunishinishi/node-askconfig/blob/master/LICENSE
23[bd_codeclimate_url]: http://codeclimate.com/github/okunishinishi/node-askconfig
24[bd_codeclimate_shield_url]: http://img.shields.io/codeclimate/github/okunishinishi/node-askconfig.svg?style=flat
25[bd_codeclimate_coverage_shield_url]: http://img.shields.io/codeclimate/coverage/github/okunishinishi/node-askconfig.svg?style=flat
26[bd_gemnasium_url]: https://gemnasium.com/okunishinishi/node-askconfig
27[bd_gemnasium_shield_url]: https://gemnasium.com/okunishinishi/node-askconfig.svg
28[bd_npm_url]: http://www.npmjs.org/package/askconfig
29[bd_npm_shield_url]: http://img.shields.io/npm/v/askconfig.svg?style=flat
30[bd_standard_url]: http://standardjs.com/
31[bd_standard_shield_url]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg
32
33<!-- Badge End -->
34
35
36<!-- Description Start -->
37<a name="description"></a>
38
39Node.js module to ask for configuration via interactive shell
40
41<!-- Description End -->
42
43
44
45
46<!-- Sections Start -->
47<a name="sections"></a>
48
49<!-- Section from "doc/guides/01.Installation.md.hbs" Start -->
50
51<a name="section-doc-guides-01-installation-md"></a>
52
53Installation
54-----
55
56```bash
57npm install askconfig --save
58```
59
60<!-- Section from "doc/guides/01.Installation.md.hbs" End -->
61
62<!-- Section from "doc/guides/02.Usage.md.hbs" Start -->
63
64<a name="section-doc-guides-02-usage-md"></a>
65
66Usage
67-----
68
69```javascript
70#!/usr/bin/env node
71'use strict'
72
73const askconfig = require('askconfig')
74
75askconfig({
76 name: 'default-name',
77 description: ''
78}).then((result) => {
79 if (err) {
80 console.error(err)
81 process.exit(1)
82 } else {
83 console.log(`Result: ${result}`)
84 process.exit(0)
85 }
86})
87
88
89````
90
91
92<!-- Section from "doc/guides/02.Usage.md.hbs" End -->
93
94
95<!-- Sections Start -->
96
97
98<!-- LICENSE Start -->
99<a name="license"></a>
100
101License
102-------
103This software is released under the [MIT License](https://github.com/okunishinishi/node-askconfig/blob/master/LICENSE).
104
105<!-- LICENSE End -->
106
107
108
\No newline at end of file