{"id":21557690,"url":"https://github.com/danielrohers/node-feature","last_synced_at":"2026-05-05T13:40:53.570Z","repository":{"id":44493627,"uuid":"123919412","full_name":"danielrohers/node-feature","owner":"danielrohers","description":"Node application with feature-based architecture","archived":false,"fork":false,"pushed_at":"2022-12-07T06:58:44.000Z","size":427,"stargazers_count":2,"open_issues_count":15,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-03T14:56:14.699Z","etag":null,"topics":["ddd","docker","mongodb","nodejs"],"latest_commit_sha":null,"homepage":"","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/danielrohers.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}},"created_at":"2018-03-05T12:55:35.000Z","updated_at":"2024-01-04T20:06:48.000Z","dependencies_parsed_at":"2023-01-24T13:45:50.641Z","dependency_job_id":null,"html_url":"https://github.com/danielrohers/node-feature","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/danielrohers/node-feature","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielrohers%2Fnode-feature","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielrohers%2Fnode-feature/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielrohers%2Fnode-feature/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielrohers%2Fnode-feature/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danielrohers","download_url":"https://codeload.github.com/danielrohers/node-feature/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielrohers%2Fnode-feature/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32652287,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"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":["ddd","docker","mongodb","nodejs"],"created_at":"2024-11-24T08:12:55.626Z","updated_at":"2026-05-05T13:40:53.555Z","avatar_url":"https://github.com/danielrohers.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# node-feature\n\n[![CodeFactor](https://www.codefactor.io/repository/github/danielrohers/node-feature/badge)](https://www.codefactor.io/repository/github/danielrohers/node-feature)\n[![Dependency Status](https://david-dm.org/danielrohers/node-feature.svg)](https://david-dm.org/danielrohers/node-feature)\n[![devDependency Status](https://david-dm.org/danielrohers/node-feature/dev-status.svg)](https://david-dm.org/danielrohers/node-feature#info=devDependencies)\n\nNode application with feature-based architecture.\n\n## Technologies\n* [Docker](https://www.docker.com)\n* [Docker Compose](https://docs.docker.com/compose)\n* [Dotenv](https://www.npmjs.com/package/dotenv)\n* [Yarn](https://yarnpkg.com)\n* [Nodemon](http://nodemon.io)\n* [Node](https://nodejs.org)\n* [Express](http://expressjs.com)\n* [Pug](https://pugjs.org)\n* [Mongo](https://www.mongodb.com)\n* [Mongoose](http://mongoosejs.com)\n* [Babel](https://babeljs.io)\n* [Eslint](https://eslint.org)\n* [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript)\n* [Sass](http://sass-lang.com)\n* [Imagemin](https://github.com/imagemin/imagemin)\n\n\n## Requirements\n\n* [Docker](https://docs.docker.com/engine/installation)\n* [Docker Compose](https://docs.docker.com/compose/install)\n\n\n## Structure\n\n```\n|-- node-feature\n|   |-- bin\n|   |   |-- www\n|   |-- public \u003c-- Compiled static files from assets\n|   |   |-- images\n|   |   |-- javascripts\n|   |   |-- stylesheets\n|   |-- src\n|   |   |-- assets\n|   |   |   |-- images\n|   |   |   |-- javascripts\n|   |   |   |-- scss\n|   |   |-- config  \u003c-- Configuration files\n|   |   |   |-- database.js\n|   |   |   |-- env.js\n|   |   |   |-- routes.js\n|   |   |   |-- views.js\n|   |   |-- domain  \u003c-- Domains/features files\n|   |   |   |-- foo\n|   |   |   |   |-- views\n|   |   |   |   |   |-- foo-index.pug\n|   |   |   |   |   |-- foo-list.pug\n|   |   |   |   |-- controller.js\n|   |   |   |   |-- model.js\n|   |   |   |   |-- route.js\n|   |   |   |   |-- service.js\n|   |   |-- views\n|   |   |   |-- includes \u003c-- Include files - https://pugjs.org/language/includes.html\n|   |   |   |-- error.pug\n|   |   |   |-- layout.pug \u003c-- Layout files - https://pugjs.org/language/extends.html\n|   |-- .babelrc\n|   |-- .dockerignore\n|   |-- .editorconfig \u003c-- Indentation  styles - http://editorconfig.org\n|   |-- .env.example  \u003c-- Example .env file\n|   |-- .eslintignore\n|   |-- .eslintrc.yml\n|   |-- .gitignore\n|   |-- Dockerfile\n|   |-- README.md\n|   |-- app.js\n|   |-- docker-compose.yml\n|   |-- nodemon.json\n|   |-- package.json\n|   |-- yarn.lock\n```\n\n## Quick Start\n\n```bash\n$ cd node-feature\n$ docker-compose up\n```\n\n**Go to** [http://localhost:3000](http://localhost:3000)\n\n**Be happy :)**\n\n## Docker commands\n\n**Check the versions**\n\nDocker:\n```bash\n$ docker --version # Docker version 17.06.0-ce, build 02c1d87\n```\n\nDocker Compose:\n```bash\n$ docker-compose --version # docker-compose version 1.14.0, build c7bdf9e\n```\n\n**Build or rebuild services**\n\n```bash\n$ docker-compose build\n```\n\n**Create and start containers**\n\n*Run containers in the background with **-d***\n\n```bash\n$ docker-compose up -d\n```\n\n### Extra commands\n\n**Stop and remove containers, networks, images, and volumes**\n\n```bash\n$ docker-compose down\n```\n\n**List containers**\n\n```bash\n$ docker-compose ps\n```\n\n**View output from containers**\n\n*Follow log output **-f***\n\n```bash\n$ docker-compose logs -f\n```\n\n## Licence\n[MIT License](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanielrohers%2Fnode-feature","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanielrohers%2Fnode-feature","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanielrohers%2Fnode-feature/lists"}