1.0.10 • Published 6 years ago

npmadmin v1.0.10

Weekly downloads
12
License
ISC
Repository
-
Last release
6 years ago

npmadmin

Admin panel for your MySql databse.

how to start

open terminal and :
$ npm install npmadmin --save
write this into your server file :
var npmadmin = require('npmadmin');
var config = {
    host     : 'localhost',
    user     : 'root',
    password : '1234',
    database : 'dbname'
};
var port = 3000;
npmadmin.init(config).then(res => {
    npmadmin.createUser('narendra' , "kumawat").then(res =>{
        npmadmin.start(port);
    }).catch(err => {
	console.log(err);
    })
}).catch(err =>{
    console.log(err);
});
open this url in browser :
http://localhost:port

Contribute

email me on nk0kumawat@gmail.com

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago