{"id":20604783,"url":"https://github.com/themost-framework/themost-adapters","last_synced_at":"2025-04-15T02:26:52.721Z","repository":{"id":25691067,"uuid":"85811360","full_name":"themost-framework/themost-adapters","owner":"themost-framework","description":"Most Web Framework v2 Data Adapters","archived":false,"fork":false,"pushed_at":"2022-12-12T01:56:45.000Z","size":6885,"stargazers_count":2,"open_issues_count":16,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-28T14:11:36.353Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/themost-framework.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":"2017-03-22T09:51:18.000Z","updated_at":"2021-09-30T05:49:17.000Z","dependencies_parsed_at":"2023-01-14T03:08:27.558Z","dependency_job_id":null,"html_url":"https://github.com/themost-framework/themost-adapters","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/themost-framework%2Fthemost-adapters","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themost-framework%2Fthemost-adapters/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themost-framework%2Fthemost-adapters/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/themost-framework%2Fthemost-adapters/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/themost-framework","download_url":"https://codeload.github.com/themost-framework/themost-adapters/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248505863,"owners_count":21115354,"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-11-16T09:24:49.698Z","updated_at":"2025-04-15T02:26:52.704Z","avatar_url":"https://github.com/themost-framework.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# themost-adapters\nMOST Web Framework 2.0 Codename Blueshift data adapters\n\nThis repository contains a set of database adapters available for developing applications and services under [MOST Web Framework 2.0 Codename Blueshift](https://github.com/themost-framework/themost)\n\n[SQLite Database Adapter](https://github.com/themost-framework/themost-adapters/tree/master/modules/%40themost/sqlite)\n\n    npm install @themost/sqlite\n\nRegister SQLite adapter:\n\n    \"adapterTypes\": [\n        ...\n          { \"name\":\"SQLite Data Adapter\", \"invariantName\": \"sqlite\", \"type\":\"@themost/sqlite\" }\n        ...\n        ],\n    adapters: [\n        ...\n        { \n            \"name\":\"local-db\", \"invariantName\":\"sqlite\", \"default\":true,\n            \"options\": {\n                database:\"db/local.db\"\n            }\n        }\n        ...\n    ]\n}\n\n\n[MySQL Database Adapter](https://github.com/themost-framework/themost-adapters/tree/master/modules/%40themost/mysql)\n\n    npm install @themost/mysql\n\nRegister MySQL adapter:\n\n    \"adapterTypes\": [\n        ...\n        { \"name\":\"MySQL Data Adapter\", \"invariantName\": \"mysql\", \"type\":\"@themost/mysql\" }\n        ...\n    ],\n    adapters: [\n        ...\n        { \"name\":\"development\", \"invariantName\":\"mysql\", \"default\":true,\n            \"options\": {\n              \"host\":\"localhost\",\n              \"port\":3306,\n              \"user\":\"user\",\n              \"password\":\"password\",\n              \"database\":\"test\"\n            }\n        }\n        ...\n    ]\n\n[MSSQL Database Adapter](https://github.com/themost-framework/themost-adapters/tree/master/modules/%40themost/mssql)\n\n    npm install @themost/mssql\n\nRegister MSSQL adapter:\n\n    \"adapterTypes\": [\n        ...\n        { \"name\":\"MSSQL Data Adapter\", \"invariantName\": \"mssql\", \"type\":\"@themost/mssql\" }\n        ...\n    ],\n    adapters: [\n        ...\n        { \"name\":\"development\", \"invariantName\":\"mssql\", \"default\":true,\n            \"options\": {\n              \"server\":\"localhost\",\n              \"user\":\"user\",\n              \"password\":\"password\",\n              \"database\":\"test\"\n            }\n        }\n        ...\n    ]\n\n[H2 Database Adapter](https://github.com/themost-framework/themost-adapters/tree/master/modules/%40themost/h2)\n\n    npm install @themost/h2\n\nRegister H2 adapter:\n\n    \"adapterTypes\": [\n        ...\n        { \"name\":\"H2 Data Adapter\", \"invariantName\": \"h2\", \"type\":\"@themost/h2\" }\n        ...\n    ],\n    adapters: [\n        ...\n        { \"name\":\"development\", \"invariantName\":\"h2\", \"default\":true,\n            \"options\": {\n               \"path\":\"~/h2/test\",\n               \"user\":\"SA\",\n               \"password\":\"\"\n           }\n        },\n        { \"name\":\"server\", \"invariantName\":\"h2\", \"default\":false,\n                    \"options\": {\n                       \"database\":\"test\",\n                       \"host\":\"localhost\",\n                       \"port\":9090,\n                       \"user\":\"SA\",\n                       \"password\":\"\",\n                       \"pool\":100\n                   }\n                }\n        ...\n    ]\n\n[Oracle Database Adapter](https://github.com/themost-framework/themost-adapters/tree/master/modules/%40themost/oracle)\n\n    npm install @themost/oracle\n    \nRegister Oracle adapter:\n\n    \"adapterTypes\": [\n        ...\n        { \"name\":\"Oracle Data Adapter\", \"invariantName\": \"oracle\", \"type\":\"@themost/oracle\" }\n        ...\n    ],\n    adapters: [\n        ...\n        { \"name\":\"development\", \"invariantName\":\"oracle\", \"default\":true,\n            \"options\": {\n              \"host\":\"localhost\",\n              \"port\":1521,\n              \"user\":\"user\",\n              \"password\":\"password\",\n              \"service\":\"orcl\",\n              \"schema\":\"PUBLIC\"\n            }\n        }\n        ...\n    ]\n\n[PostgreSQL Database Adapter](https://github.com/themost-framework/themost-adapters/tree/master/modules/%40themost/pg)\n\n    npm install @themost/pg\n\nRegister PostgreSQL adapter:\n\n    \"adapterTypes\": [\n            ...\n            { \"name\":\"PostgreSQL Data Adapter\", \"invariantName\": \"postgres\", \"type\":\"@themost/pg\" }\n            ...\n        ],\n    adapters: {\n        \"postgres\": { \"name\":\"local-db\", \"invariantName\":\"postgres\", \"default\":true,\n            \"options\": {\n              \"host\":\"localhost\",\n              \"post\":5432,\n              \"user\":\"user\",\n              \"password\":\"password\",\n              \"database\":\"db\"\n            }\n    }\n}\n\n[Generic data connection pooling adapter](https://github.com/themost-framework/themost-adapters/tree/master/modules/%40themost/pool)\n\n    npm install @themost/pool\n\nRegister Generic Pool Adapter on app.json as follows:\n\n    \"adapterTypes\": [\n        ...\n        { \"name\":\"...\", \"invariantName\": \"...\", \"type\":\"...\" },\n        { \"name\":\"Pool Data Adapter\", \"invariantName\": \"pool\", \"type\":\"@themost/pool\" }\n        ...\n    ],\n    adapters: [\n        ...\n        { \"name\":\"development\", \"invariantName\":\"...\", \"default\":false,\n            \"options\": {\n              \"server\":\"localhost\",\n              \"user\":\"user\",\n              \"password\":\"password\",\n              \"database\":\"test\"\n            }\n        },\n        { \"name\":\"development_with_pool\", \"invariantName\":\"pool\", \"default\":true,\n                    \"options\": {\n                      \"adapter\":\"development\"\n                    }\n                }\n        ...\n    ]\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthemost-framework%2Fthemost-adapters","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthemost-framework%2Fthemost-adapters","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthemost-framework%2Fthemost-adapters/lists"}