northwind-rest-api
Version:
Local REST API Exposing Northwind Database.
20 lines (18 loc) • 1.47 kB
JavaScript
function splashScreen() {
console.log(`
███ ██ ██████ ██████ ████████ ██ ██ ██ ██ ██ ███ ██ ██████
████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ████ ██ ██ ██
██ ██ ██ ██ ██ ██████ ██ ███████ ██ █ ██ ██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ███ ██ ██ ██ ██ ██ ██ ██
██ ████ ██████ ██ ██ ██ ██ ██ ███ ███ ██ ██ ████ ██████
__________________________________________________________________________
http://localhost:3030/api/products/
http://localhost:3030/api/employees/
http://localhost:3030/api/suppliers/
http://localhost:3030/api/categories/
http://localhost:3030/api/contact-us/
http://localhost:3030/api/register/
http://localhost:3030/api/login/
http://localhost:3030/api/refresh-token/`);
}
module.exports = splashScreen;