{"id":15908704,"url":"https://github.com/graykode/nemtodo","last_synced_at":"2026-01-16T00:58:34.378Z","repository":{"id":110173157,"uuid":"155342093","full_name":"graykode/NEMTODO","owner":"graykode","description":"NEMTODO는 N(Nodejs)와 E(Express) M(Mongodb)를 사용하는 TODO LIST 입니다.","archived":false,"fork":false,"pushed_at":"2018-11-08T09:12:24.000Z","size":380,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-08T15:13:10.418Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://49.247.207.5/","language":"HTML","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/graykode.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":"2018-10-30T07:25:31.000Z","updated_at":"2018-11-08T09:14:44.000Z","dependencies_parsed_at":"2023-03-14T15:45:58.002Z","dependency_job_id":null,"html_url":"https://github.com/graykode/NEMTODO","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/graykode%2FNEMTODO","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/graykode%2FNEMTODO/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/graykode%2FNEMTODO/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/graykode%2FNEMTODO/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/graykode","download_url":"https://codeload.github.com/graykode/NEMTODO/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246916740,"owners_count":20854511,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2024-10-06T14:23:32.376Z","updated_at":"2025-04-03T00:42:27.531Z","avatar_url":"https://github.com/graykode.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NEMTODO\r\n![](https://s3.ap-northeast-2.amazonaws.com/grepp-cloudfront/programmers_imgs/competition-imgs/2018+WinterCoding/img-banner-wintercoding.jpg)\r\n\r\nNEMTODO는 N(Nodejs)와 E(Express) M(Mongodb)를 사용하는 TODO LIST 입니다.\r\n\r\n\r\n\r\n## Key Features\r\n\r\n- Nodejs + Express\r\n- MongoDB\r\n- CRUD\r\n- TODO LIST\r\n\r\n\r\n\r\n## Demo\r\n\r\nhttp://49.247.207.5/\r\n\r\n\r\n\r\n## To-Do Features\r\n\r\n- 새로운 TODO(제목 + 내용)를 작성한다\r\n- 사용자의 선택에 의해 TODO에는 마감 기한을 넣을 수 있다.\r\n- 우선순위를 조절할 수 있다.\r\n- 완료 처리를 할 수 있다.\r\n- 마감기한이 지난 TODO에 대해 알림을 노출한다.\r\n- TODO 목록을 볼 수 있다.\r\n- TODO 내용을 수정할 수 있다.\r\n- TODO 항목을 삭제할 수 있다.\r\n\r\n## Quick Start\r\n\r\n```shell\r\n$ git clone https://github.com/graykode/NEMTODO.git\r\n$ npm init\r\n$ npm install\r\n$ npm install moment\r\n$ node app.js\r\n```\r\n\r\n\r\n\r\n## Server Configuration\r\n\r\n- OS : Ubuntu LTS 16.04 (루트 권한에서 실행)\r\n- nodejs : 11.0.0 (8버전보다 높은 버전이 필요합니다.)\r\n\r\n- npm : 6.4.1\r\n- mongoDB shell : 2.6.12\r\n\r\n**1. Nodejs Install**\r\n\r\n   ```shell\r\n   $ apt-get update\r\n   $ apt-get upgrade\r\n   $ curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -\r\n   $ apt-get install nodejs\r\n   ```\r\n\r\n**2. MongoDB Install \u0026 Configuration**\r\n\r\n   ```shell\r\n   $ apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2930ADAE8CAF5059EE73BB4B58712A2291FA4AD5\r\n   $ echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list\r\n   $ apt-get update\r\n   $ apt-get install -y mongodb-org\r\n   $ service mongodb start\r\n   ```\r\n\r\n- [E: Unable to locate package mongodb-org](https://stackoverflow.com/questions/28945921/e-unable-to-locate-package-mongodb-org)\r\n- [error: Unit mongodb.service is masked when starting mongodb](https://askubuntu.com/questions/919108/error-unit-mongodb-service-is-masked-when-starting-mongodb)\r\n\r\n**3. Express, npm Install \u0026 Configuration**\r\n\r\n   ```shell\r\n   $ mkdir NEMTODO \u0026\u0026 cd NEMTODO\r\n   $ npm init --yes\r\n   $ npm install express body-parser dotenv mongoose morgan ejs --save\r\n   $ npm install moment --save\r\n   ```\r\n\r\n\r\n\r\n## Unit test \u0026 Ingegration test\r\n\r\n```shell\r\n$ npm install --save-dev supertest expect.js mocha chai\r\n$ npm test\r\n```\r\n\r\n![](screenshot.png)\r\n\r\n\r\n\r\n## Contact\r\n\r\n- nlkey2022@gmail.com(Tae Hwan Jung)\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgraykode%2Fnemtodo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgraykode%2Fnemtodo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgraykode%2Fnemtodo/lists"}