{"id":18562916,"url":"https://github.com/fullstackplayer/fsp.jexecutor","last_synced_at":"2025-05-15T18:11:56.441Z","repository":{"id":144523026,"uuid":"441421970","full_name":"FullStackPlayer/fsp.JExecutor","owner":"FullStackPlayer","description":"A JBDAP executor written in TypeScript, compatible with both Nodejs and Deno.","archived":false,"fork":false,"pushed_at":"2021-12-24T14:03:31.000Z","size":95,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-17T12:45:47.733Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FullStackPlayer.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":"2021-12-24T09:20:41.000Z","updated_at":"2021-12-24T14:03:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"eedb8350-01e8-469c-b7af-f87e6ad65fbb","html_url":"https://github.com/FullStackPlayer/fsp.JExecutor","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/FullStackPlayer%2Ffsp.JExecutor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FullStackPlayer%2Ffsp.JExecutor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FullStackPlayer%2Ffsp.JExecutor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FullStackPlayer%2Ffsp.JExecutor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FullStackPlayer","download_url":"https://codeload.github.com/FullStackPlayer/fsp.JExecutor/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254394726,"owners_count":22063984,"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-06T22:11:24.924Z","updated_at":"2025-05-15T18:11:56.422Z","avatar_url":"https://github.com/FullStackPlayer.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fsp.JExecutor\n \nA JBDAP executor written in TypeScript, compatible with both Nodejs and Deno.\n\nThis is only a general wrapper, an adapter suits your own data source is required. We will provide an official MySQL adapter, take it to be an adapter example.\n\n## Usage\n\n~~~ts\nimport { JExecutor, JConfig, JRequest, SecurityMode, IJAdapter, AdapterStatus } from \"../../mod.ts\";\n// adpt should be an instance of an adapter which implements IJAdapter\n// here we just define an IJAdapter compatible object for demo purpose\nlet adpt: IJAdapter = {\n    client: {},\n    config: {},\n    status: AdapterStatus.UNSET,\n    logs:[],\n    async connect() {},\n    async process(req: JRequest, cfg: JConfig) {\n        return req\n    }\n}\nlet exe = new JExecutor(adpt)\nlet request = new JRequest({\n    commands: [\n        {\n            name: 'users',\n            type: 'list',\n            target: 'User',\n            fields: `id,lastName=\u003ename`\n        }\n    ]\n})\nlet res = await exe.execute(request)\n~~~\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffullstackplayer%2Ffsp.jexecutor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffullstackplayer%2Ffsp.jexecutor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffullstackplayer%2Ffsp.jexecutor/lists"}