UNPKG
@jsmrcaga/keep
Version:
latest (0.5.2)
0.5.2
0.5.1
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
A simple password manager
github.com/jsmrcaga/keep
jsmrcaga/keep
@jsmrcaga/keep
/
cli
/
scripts
/
start.js
9 lines
(7 loc)
•
245 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module
.
exports
=
(
args, options={}
) =>
{
if
(!options.
config
&& !options.
c
) {
console
.
warn
(
`[KEEP] No config file specified, using ./config.json`
); }
const
keep =
require
(
'../../keep'
); keep.
start
(options, options.
config
|| options.
c
); };