{"id":24221648,"url":"https://github.com/michdo93/nodejs-mysql","last_synced_at":"2026-06-22T19:31:41.046Z","repository":{"id":135031208,"uuid":"336057329","full_name":"Michdo93/nodejs-mysql","owner":"Michdo93","description":"A simple CRUD MVC example with nodejs, express, ejs and mysql","archived":false,"fork":false,"pushed_at":"2021-02-04T19:26:06.000Z","size":1000,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-01T21:38:06.124Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Michdo93.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-02-04T19:13:29.000Z","updated_at":"2022-11-20T22:21:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"1e631abe-8a91-4b2b-a9e7-7c6a75de40f1","html_url":"https://github.com/Michdo93/nodejs-mysql","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Michdo93/nodejs-mysql","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Michdo93%2Fnodejs-mysql","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Michdo93%2Fnodejs-mysql/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Michdo93%2Fnodejs-mysql/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Michdo93%2Fnodejs-mysql/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Michdo93","download_url":"https://codeload.github.com/Michdo93/nodejs-mysql/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Michdo93%2Fnodejs-mysql/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34663524,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-22T02:00:06.391Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-14T06:20:09.693Z","updated_at":"2026-06-22T19:31:41.027Z","avatar_url":"https://github.com/Michdo93.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nodejs-mysql\n\n## Installation\n\n```\ngit clone https://github.com/Michdo93/nodejs-mysql.git\ncd nodejs-mysql\nnpm install\n```\n\n## Create the Database\n\nInsert following code as SQL statement or import customers.sql inside the database `testdb`\n\n```\n-- phpMyAdmin SQL Dump\n-- version 4.6.6deb5ubuntu0.5\n-- https://www.phpmyadmin.net/\n--\n-- Host: localhost:3306\n-- Generation Time: Feb 04, 2021 at 08:23 PM\n-- Server version: 5.7.32-0ubuntu0.18.04.1\n-- PHP Version: 7.2.24-0ubuntu0.18.04.7\n\nSET SQL_MODE = \"NO_AUTO_VALUE_ON_ZERO\";\nSET time_zone = \"+00:00\";\n\n\n/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;\n/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;\n/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;\n/*!40101 SET NAMES utf8mb4 */;\n\n--\n-- Database: `testdb`\n--\n\n-- --------------------------------------------------------\n\n--\n-- Table structure for table `customers`\n--\n\nCREATE TABLE `customers` (\n  `id` int(11) NOT NULL,\n  `email` varchar(255) NOT NULL,\n  `name` varchar(255) NOT NULL,\n  `active` tinyint(1) DEFAULT '0'\n) ENGINE=InnoDB DEFAULT CHARSET=utf8;\n\n--\n-- Dumping data for table `customers`\n--\n\nINSERT INTO `customers` (`id`, `email`, `name`, `active`) VALUES\n(1, 'test@gmail.com', 'test', 1),\n(2, 'dump@hs-furtwangen.de', 'dump', 1);\n\n--\n-- Indexes for dumped tables\n--\n\n--\n-- Indexes for table `customers`\n--\nALTER TABLE `customers`\n  ADD PRIMARY KEY (`id`);\n\n--\n-- AUTO_INCREMENT for dumped tables\n--\n\n--\n-- AUTO_INCREMENT for table `customers`\n--\nALTER TABLE `customers`\n  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;\n/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;\n/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;\n/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichdo93%2Fnodejs-mysql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichdo93%2Fnodejs-mysql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichdo93%2Fnodejs-mysql/lists"}