-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
82 lines (70 loc) · 1.79 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
const inquirer = require("inquirer");
const fs = require("fs");
const util = require("util");
const writeFileAsync = util.promisify(fs.writeFile);
function writeToFile() {
return inquirer.prompt([
{
type: "input",
name: "title",
message: "What is the title of your project?"
},
{
type: "input",
name: "description",
message: "Please provide a brief description of your application"
},
{
type: "input",
name: "installation",
message: "What are the steps required to install your project?"
},
{
type: "input",
name: "usage",
message: "how do you use this application?"
},
{
type: "input",
name: "credits",
message: "please list all of the collaborators"
},
{
type: "input",
name: "contribution",
message: "provide a brief description of how others can contribute if they would like to"
},
{
type: "checkbox",
name: "licenses",
message: "please select the licenses that this application has",
choices: ["MIT", "CC BY"]
}]);
}
function generateReadMe (answers) {
return `#${answers.title}
## Description:
${answers.description}
## Installation:
${answers.installation}
## Usage:
${answers.usage}
## Credits:
${answers.credits}
## Contribution:
${answers.contribution}
## Licenses:
${answers.licenses}
`
}
async function init() {
try {
const answers = await writeToFile();
const markDown = generateReadMe(answers);
await writeFileAsync("readMe.md", markDown);
console.log("Successfully created the readMe.md");
} catch(err) {
console.log(err);
}
}
init();