Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moojigc/employee-tracker-database
Manage your employee database using NodeJS Inquirer. Allows for all CRUD operations (Create, Read, Update, Delete).
https://github.com/moojigc/employee-tracker-database
Last synced: about 1 month ago
JSON representation
Manage your employee database using NodeJS Inquirer. Allows for all CRUD operations (Create, Read, Update, Delete).
- Host: GitHub
- URL: https://github.com/moojigc/employee-tracker-database
- Owner: moojigc
- Created: 2020-04-29T22:43:55.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-11T12:33:17.000Z (over 3 years ago)
- Last Synced: 2024-10-15T05:26:18.889Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Employee Tracker
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg)](https://www.contributor-covenant.org/version/2/0/code_of_conduct/)Developed by Moojig Battsogt.
Contact at [email protected].
## Description
Manage your employee database using NodeJS Inquirer. Allows for all CRUD operations (Create, Read, Update, Delete).
[See in action here.](https://youtu.be/5WCKEf5zA2g)
## Installation
Git clone this repo and add a config file in the /utils folder to add your database connection details. Use either the config_template.json file (and rename it) or copy the snippet below.
```json
{
"user": "root",
"password": "",
"host": "localhost",
"database": "staff"
}
```## Usage
Run `npm install` to grab mysql2 and inquirer.Run `node index.js`.
## License
ISC License
Copyright (c) 2020, Moojig Battsogt
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.