{"id":19473238,"url":"https://github.com/ajibs/mini-twitter","last_synced_at":"2026-04-28T16:02:44.962Z","repository":{"id":69999293,"uuid":"122791673","full_name":"ajibs/mini-twitter","owner":"ajibs","description":"Connect with other people. (Mini Twitter Clone)","archived":false,"fork":false,"pushed_at":"2018-02-25T22:44:44.000Z","size":695,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-11-19T16:02:55.385Z","etag":null,"topics":["mongodb","nodejs","pug","twitter-clone"],"latest_commit_sha":null,"homepage":"https://mini-twitterify.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/ajibs.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":"2018-02-25T00:14:21.000Z","updated_at":"2018-11-26T17:56:58.000Z","dependencies_parsed_at":"2023-04-04T20:34:50.939Z","dependency_job_id":null,"html_url":"https://github.com/ajibs/mini-twitter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ajibs/mini-twitter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajibs%2Fmini-twitter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajibs%2Fmini-twitter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajibs%2Fmini-twitter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajibs%2Fmini-twitter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ajibs","download_url":"https://codeload.github.com/ajibs/mini-twitter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajibs%2Fmini-twitter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32387923,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T14:34:11.604Z","status":"ssl_error","status_checked_at":"2026-04-28T14:32:37.009Z","response_time":56,"last_error":"SSL_read: 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":["mongodb","nodejs","pug","twitter-clone"],"created_at":"2024-11-10T19:17:48.404Z","updated_at":"2026-04-28T16:02:44.956Z","avatar_url":"https://github.com/ajibs.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Twitterify\nConnect with other people.\n\nTwitterify is a [Chaser](https://chaserhq.com/) Project.\n\n\n## Feature List\n* User can signup and login\n* Authenticated User can post a tweet (max of 200 characters)\n* Autheticated User can reply to tweets\n* On replying someone, they would be notified via email\n* User is able to view all tweets and replies\n* Authenticated User can like tweets\n\n\n## Getting Started\nTwitterify is hosted on Heroku and can be accessed here:\n- [Production](https://mini-twitterify.herokuapp.com/)\n\nYou can visit the application by clicking the above link and play around with the features.\n\n## Prerequisites\n These are what you need installed on your computer to use the application:\n \n - Web Browser (Chrome, or Mozilla, or Safari, or Opera, or Microsoft Edge )\n\n #### For Developers:\n - [Node.js](https://nodejs.org/en/download/)\n - [Yarn](https://yarnpkg.com/en/docs/install)\n\n## Setup\n#### Local Copy\nTo create a local copy, run the following in your terminal:\n```bash\ngit clone https://github.com/ajibs/mini-twitter.git\n```\nThen change into the local directory, run the following in your terminal:\n```bash\ncd mini-twitter\n```\n\n#### Install Node.js and Yarn\nIf you don't have Node.js installed, please go ahead and grab it [here](https://nodejs.org/). This project uses ES6+ features and requires Node version `8.9.4`\n\nYarn is a package manager for Node.js and can be installed from [here](https://yarnpkg.com/en/docs/install).\n\nTo confirm that you have Node.js installed, run the following in your terminal:\n```bash\nnode -v\n```\nYou should get something like `v8.9.4`.\n\nTo confirm that you have Yarn installed, run the following in your terminal:\n```bash\nyarn -v\n```\nYou should get something like `1.3.2`.\n\n#### Setup Database and .env file\nYou should also create a `.env` file using `.env.sample` as a prototype. Run the following in your terminal:\n```bash\ncp .env.sample .env\n```\n\nYou can setup a database on [mlab](https://mlab.com/) and replace the `DATABASE` placeholder in `.env` \n\nSignup on [Mailtrap](https://mailtrap.io/) and replace the placeholders of `MAIL_USER` and `MAIL_PASS` in `.env` to ensure the email functionality works.\n\n#### Install Node.js Modules\nTo install all dependencies, run the following in your terminal:\n```bash\nyarn\n```\n\n\n## Development\nTo kickstart the application, run the following in your terminal:\n```bash\nyarn start\n```\n\nIf you'd like to continue full-stack development on this project, run the following in your terminal:\n```bash\nyarn dev\n```\n\nOpen up your web browser and visit the following url to seed the database:\n```bash\nhttp://localhost:4400/seed\n```\n\nVisit the following to access the home page\n```bash\nhttp://localhost:4400/\n```\n\n## Built With\n- [Git](https://git-scm.com/) - Version Control\n- [Node.js](https://nodejs.org/) - JS Runtime Environment\n- [Yarn](https://yarnpkg.com) - Package Manager\n- [MongoDb](https://www.mongodb.com/download-center#community) - Database\n- [Express](https://expressjs.com/en/starter/installing.html) - Web Framework\n- [Pug](https://pugjs.org/api/getting-started.html) - Templating Engine\n- [Webpack](https://webpack.js.org/) - Build Tool\n- [Babel](https://babeljs.io/) - Transpiler\n- [ESLint](https://eslint.org/) - Linting Tool\n- [mLab](https://mlab.com/) - Database Hosting\n- [Heroku](https://heroku.com) - Hosting and Continuous Deployment\n- [VS Code](https://code.visualstudio.com/) - Code Editor\n- [Chrome](https://www.google.com/chrome/browser/desktop/index.html) - Browser\n\n\n## Author\n* [Bolu Ajibawo](https://github.com/ajibs)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fajibs%2Fmini-twitter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fajibs%2Fmini-twitter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fajibs%2Fmini-twitter/lists"}