{"id":15209171,"url":"https://github.com/practical-works/express-sample","last_synced_at":"2026-02-06T18:36:55.908Z","repository":{"id":248773645,"uuid":"409032258","full_name":"practical-works/express-sample","owner":"practical-works","description":"🌏 ExpressJS sample project featuring useful libraries.","archived":false,"fork":false,"pushed_at":"2021-09-24T04:04:15.000Z","size":270,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-21T15:44:39.348Z","etag":null,"topics":["ejs","ejs-express","ejs-templates","ejs-templating","express","express-js","expressjs","node","node-js","nodejs"],"latest_commit_sha":null,"homepage":"https://amb-express-sample.herokuapp.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/practical-works.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-09-22T01:56:17.000Z","updated_at":"2022-03-11T23:21:42.000Z","dependencies_parsed_at":"2024-07-17T03:09:36.840Z","dependency_job_id":null,"html_url":"https://github.com/practical-works/express-sample","commit_stats":null,"previous_names":["practical-works/express-sample"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/practical-works/express-sample","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/practical-works%2Fexpress-sample","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/practical-works%2Fexpress-sample/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/practical-works%2Fexpress-sample/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/practical-works%2Fexpress-sample/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/practical-works","download_url":"https://codeload.github.com/practical-works/express-sample/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/practical-works%2Fexpress-sample/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29172618,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T16:33:35.550Z","status":"ssl_error","status_checked_at":"2026-02-06T16:33:30.716Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["ejs","ejs-express","ejs-templates","ejs-templating","express","express-js","expressjs","node","node-js","nodejs"],"created_at":"2024-09-28T07:21:46.191Z","updated_at":"2026-02-06T18:36:55.894Z","avatar_url":"https://github.com/practical-works.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🌏 Express Sample\n\n[![Web](https://img.shields.io/badge/web-blue?logo=w3c)](https://github.com/topics/web)\n[![JavaScript](https://img.shields.io/badge/javascript-blue?logo=javascript)](https://github.com/topics/javascript)\n[![NodeJS](https://img.shields.io/badge/node-blue?logo=node.js)](https://github.com/topics/node)\n\nExpressJS sample project featuring useful libraries.\n\n[**🌐 View Live Demo**](https://amb-express-sample.herokuapp.com)\n\n![Screenshot](./screenshot.gif?raw=true)\n\n## 📜 Introduction\n\nThis is a simple mock backend based Website project built with ExpressJS. It is setup with some common NodeJS libraries.\nThis project can be used for learning purposes or as a starter template for starting a project.\n\n## 🏁 Getting started\n\n1. Clone the repository:\n\n```bash\ncd somewhere\ngit clone https://github.com/practical-works/express-sample.git\ncd express-sample\n```\n\n2. Install the dependencies:\n\n```bash\nnpm i\n```\n\n3. Install [**Nodemon**](https://github.com/remy/nodemon/) globally:\n\n```bash\nnpm i -g nodemon\n```\n\n4. Run server for development:\n\n```bash\nnpm run dev\n```\n\n## ✈️ Deployment\n\n\u003e 💡 It is [**advised**](https://github.com/motdotla/dotenv#should-i-commit-my-env-file) to not push the `.env` file in production. either delete it or add it to `.gitignore`.\n\nTo deploy the project in a node environment:\n\n1. Push the repository to a node server using a service like [Heroku](https://heroku.com).\n\n2. Install the dependencies:\n\n```bash\nnpm i\n```\n\n3. Start server for production:\n\n```bash\nnpm start\n```\n\n## 🚀 Development\n\n### 🏭 Environment\n\n- Runtime: [**NodeJS**](https://github.com/nodejs)\n- Package Manager: [**NPM**](https://github.com/npm)\n- Editor: [**Sublime Text**](https://www.sublimetext.com)\n\n### 🌑 Backend\n\n- ⚛️ Core:\n  - Main: [**NodeJS**](https://github.com/nodejs/node) / [**ExpressJS**](https://github.com/expressjs/express)\n  - Template Engine: [**EJS**](https://github.com/mde/ejs)\n- 🔧 Utils:\n  - Validation: [**Express-Validator**](https://github.com/express-validator/express-validator)\n  - Session Storage: [**Cookie-Session**](https://github.com/expressjs/cookie-session)\n  - Environment Configuration: [**DotEnv**](https://github.com/motdotla/dotenv)\n  - Console Logging: [**Morgan**](https://github.com/expressjs/morgan)\n  - Console Coloration: [**Colors.JS**](https://github.com/Marak/colors.js)\n  - Hot Reloading: [**LiveReload**](https://github.com/napcs/node-livereload) / [**Connect-LiveReload**](https://github.com/intesso/connect-livereload)\n\n### 🌕 Frontend\n\n- 🎨 UI: [**Bulma**](https://github.com/jgthms/bulma)\n\n## 📃 License\n\nLicensed under [MIT](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpractical-works%2Fexpress-sample","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpractical-works%2Fexpress-sample","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpractical-works%2Fexpress-sample/lists"}