{"id":20778386,"url":"https://github.com/natelindev/shuttle-backend","last_synced_at":"2026-04-13T15:33:34.471Z","repository":{"id":48063763,"uuid":"205194747","full_name":"natelindev/shuttle-backend","owner":"natelindev","description":"Shuttle REST/GraphQL backend","archived":false,"fork":false,"pushed_at":"2023-12-15T20:25:54.000Z","size":317,"stargazers_count":2,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-11T22:15:19.885Z","etag":null,"topics":["api","api-server","graphql","graphql-server","javascript","mongodb","nodejs","rest-api","shuttle","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/natelindev.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":"2019-08-29T15:33:04.000Z","updated_at":"2022-05-24T18:47:07.000Z","dependencies_parsed_at":"2025-01-18T08:27:38.642Z","dependency_job_id":"6d57f8f2-4c81-4054-9510-d7c07d0326ce","html_url":"https://github.com/natelindev/shuttle-backend","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/natelindev/shuttle-backend","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natelindev%2Fshuttle-backend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natelindev%2Fshuttle-backend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natelindev%2Fshuttle-backend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natelindev%2Fshuttle-backend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/natelindev","download_url":"https://codeload.github.com/natelindev/shuttle-backend/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/natelindev%2Fshuttle-backend/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31759493,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T15:25:13.801Z","status":"ssl_error","status_checked_at":"2026-04-13T15:25:09.162Z","response_time":93,"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":["api","api-server","graphql","graphql-server","javascript","mongodb","nodejs","rest-api","shuttle","typescript"],"created_at":"2024-11-17T13:21:13.651Z","updated_at":"2026-04-13T15:33:34.452Z","avatar_url":"https://github.com/natelindev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Shuttle JS\n\n#### Introduction\n\nBuilt with `Express`, `Node.JS`, using `Typescript`\n\n#### Setup\n\nInstall latest `Node.js` from [here](https://nodejs.org/en/download/)\n\nInstall latest `MongoDB` from [here](https://www.mongodb.com/download-center/community)\n\nStart the `MongoDB` using command\n\n```bash\nmongod\n```\n\n##### macOS\n\nOn macOS, you can install a mongdb GUI client using\n\n```bash\nbrew cask install mongodb\n```\n\n##### Linux\n\nOn linux, you should run `MongoDB` as a service\n\n```bash\nvi /etc/systemd/system/mongo.service\n```\n\nThen enter the following:\n\n```plaintext\n[Unit]\nDescription=Mongo DB\nAfter=network.target\n\n[Service]\nType=simple\nUser=your_user_name\nExecStart=/usr/bin/mongod\nRestart=on-failure\n\n[Install]\nWantedBy=multi-user.target\n```\n\n##### Windows\n\nOn windows\n\n##### Add dotenv file\n\ncreate a `.env` file in project directory, with content like this:\n\nyou can change it to whatever port you prefer\n\n```plaintext\nPORT = 7777\nSECRET = 'SOME_RANDOM_STRING'\nJWT_EXPIRATION_MS = 259200000\nMONGODB_CONNECT_STRING = 'mongodb://127.0.0.1:27017/shuttle'\n```\n\n##### Install dependencies\n\nInstall the dependencies using:\n\n```bash\nyarn install\n```\n\nor\n\n```bash\nnpm install\n```\n\n#### Run\n\nEnter the project directory and\n\n```shell\nyarn dev\n```\n\nor\n\n```bash\nnpm start\n```\n\nor\n\n```bash\nnpm run dev\n```\n\n#### Compile Typescrit and run the JS\n\nEnter the project directory and\n\n```shell\nyarn prod\n```\n\nor\n\n```bash\nnpm run prod\n```\n\n#### Lint\n\nYou need eslint installed globally\n\n```bash\nyarn lint\n```\n\nor\n\n```bash\nnpm run lint\n```\n\n#### Debug\n\nif you are using `Visual Studio Code`\n\nGo to `Settings-\u003e Debug: Node: Auto Attach`, Set it to be `On`\n\nAnd then\n\n```bash\nyarn debug\n```\n\nor\n\n```bash\nnpm debug\n```\n\n#### Run tests\n\nYou need jest installed globally\n\n```bash\nyarn test\n```\n\nor\n\n```bash\nnpm test\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnatelindev%2Fshuttle-backend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnatelindev%2Fshuttle-backend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnatelindev%2Fshuttle-backend/lists"}