{"id":26488344,"url":"https://github.com/novqigarrix/novo","last_synced_at":"2026-05-04T01:33:48.334Z","repository":{"id":55377857,"uuid":"523026156","full_name":"NovqiGarrix/novo","owner":"NovqiGarrix","description":"Novo is a simple Object Data Modeling (ODM) for MongoDB with Deno Runtime","archived":false,"fork":false,"pushed_at":"2023-04-19T06:10:16.000Z","size":53,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-25T20:06:40.818Z","etag":null,"topics":["deno","mongodb","odm"],"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/NovqiGarrix.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,"zenodo":null}},"created_at":"2022-08-09T16:25:06.000Z","updated_at":"2022-12-19T13:50:37.000Z","dependencies_parsed_at":"2025-06-25T20:06:42.631Z","dependency_job_id":"a274c00f-1865-42de-a8b6-fe4ed4fa4fe0","html_url":"https://github.com/NovqiGarrix/novo","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/NovqiGarrix/novo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NovqiGarrix%2Fnovo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NovqiGarrix%2Fnovo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NovqiGarrix%2Fnovo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NovqiGarrix%2Fnovo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NovqiGarrix","download_url":"https://codeload.github.com/NovqiGarrix/novo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NovqiGarrix%2Fnovo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32591601,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"ssl_error","status_checked_at":"2026-05-03T22:09:10.534Z","response_time":103,"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":["deno","mongodb","odm"],"created_at":"2025-03-20T06:59:28.766Z","updated_at":"2026-05-04T01:33:48.320Z","avatar_url":"https://github.com/NovqiGarrix.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Novo\n\nNovo is a simple Object Data Modeling (ODM) for MongoDB. Novo is created for\nyour Mongodb project in Deno. It's easy to use and blazingly fast.\n\n## TODOs\n\nWorking further for Query Class.\n\n## How to Use\n\nYou can run this example with:\n\n```bash\ndeno task example\n```\n\n### Create a Model\n\n```ts\n// example/models/movie.model.ts\n\nimport {\n    novo,\n    ObjectId,\n} from \"https://raw.githubusercontent.com/NovqiGarrix/novo/main/mod.ts\";\n\ninterface IMovieModel {\n    _id: ObjectId;\n\n    slug: string;\n\n    title: string;\n\n    poster: string;\n\n    createdAt: string;\n\n    updatedAt: string;\n}\n\n// \"movies\" is the collection name\nconst MovieModel = novo.model\u003cIMovieModel\u003e(\"movies\");\nexport default MovieModel;\n```\n\n### Use The Model\n\n```ts\nimport { novo } from \"https://raw.githubusercontent.com/NovqiGarrix/novo/main/mod.ts\";\nimport MovieModel from \"./models/movie.model.ts\";\n\nawait novo.connect(\"mongodb://localhost:27017/movies\");\n\nconst avengerEndGame = await MovieModel.findOne({\n    slug: \"avg-endgame\",\n});\nconsole.log(`-- ${avengerEndGame?.title} --`);\nconsole.log(avengerEndGame);\n\nglobalThis.addEventListener(\"unload\", () =\u003e {\n    /** Disconnect from database when deno is about to exit.\n     * NOTE: This action is required.\n     */\n    novo.disconnect();\n});\n\nDeno.exit(0);\n```\n\n## Run Unit Test\n\nTo run the unit tests:\n\n```bash\ndeno task test\n```\n\n## Free for Contributions\n\nHey, Developers. I'm glad if we're working together on this project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnovqigarrix%2Fnovo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnovqigarrix%2Fnovo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnovqigarrix%2Fnovo/lists"}