-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
83 lines (66 loc) · 1.84 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
83
const yargs=require('yargs')
const fs=require('fs')
data=fs.readFileSync('storage.json');
parsedData=JSON.parse(data)
yargs.version('1.0.0')
yargs.command(
{
command:'add',
describe:'Add new note',
builder: {
title:{
describe:'title name',
type:'string',
demandOption:true,
},
body:{
describe:'body name',
type:'string',
demandOption:true,
}
},
handler:(argv)=>{
book={
id:parsedData.length+1,
title:argv.title,
body:argv.body
}
parsedData.push(book);
fs.writeFileSync('storage.json',JSON.stringify(parsedData))
}
}
)
yargs.command(
{
command:'remove',
describe:'remove item from the list',
builder:{
id:{
type:'number',
demandOption:true,
describe:'id of an item you want to delete'
}
},
handler:(argv)=>{
parsedData=parsedData.filter((item)=>item.id!=argv.id);
fs.writeFileSync('storage.json',JSON.stringify(parsedData))
}
}
)
yargs.command(
{
command:'all',
describe:'display all items',
handler:(argv)=>{
parsedData.map((item)=>{
const count=1;
console.log('\nitem '+item.id)
console.log('------------------------------------------------------------')
console.log('title:'+item.title)
console.log('body:'+item.body)
console.log('____________________________________________________________\n\n')
})
}
}
)
console.log(yargs.argv)