{"id":19999008,"url":"https://github.com/manuelro/koa-graphql-mssql","last_synced_at":"2026-06-05T22:31:26.316Z","repository":{"id":44823250,"uuid":"264829649","full_name":"manuelro/koa-graphql-mssql","owner":"manuelro","description":"A project setup using Koa, GraphQL, SQL Server and NextJS.","archived":false,"fork":false,"pushed_at":"2022-01-22T12:10:48.000Z","size":1391,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-12T12:46:10.938Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/manuelro.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":"2020-05-18T04:50:38.000Z","updated_at":"2023-04-03T08:12:16.000Z","dependencies_parsed_at":"2022-08-26T09:21:28.350Z","dependency_job_id":null,"html_url":"https://github.com/manuelro/koa-graphql-mssql","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manuelro%2Fkoa-graphql-mssql","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manuelro%2Fkoa-graphql-mssql/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manuelro%2Fkoa-graphql-mssql/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manuelro%2Fkoa-graphql-mssql/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manuelro","download_url":"https://codeload.github.com/manuelro/koa-graphql-mssql/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241439486,"owners_count":19963095,"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-13T05:10:10.711Z","updated_at":"2025-03-01T23:29:01.117Z","avatar_url":"https://github.com/manuelro.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GraphQL, Koa, and SQL Server\n\n## Bief\nKoa is a quite new framework to create light-weight server-side APIs using the NodeJS runtime. It was created by the team behind Express and leverages asynchronicity, better error handling and more predictive error handling.\n\n### About The Workshop\nIn this workshop we'll be interacting with several virtualization, front and backend technologies and the SQL Server RDBMS.\n\n### Technology Stack\n|Area|Technology|Tag|Desccription|Commands|\n|---|---|---|---|---|\n|Virtualization|[Docker](https://www.docker.com)|-|A containerization technology that allows you to virtualize machines based of off images.| **docker pull:** `docker pull mcr.microsoft.com/mssql/server:2019-CU4-ubuntu-16.04`\u003cbr\u003e\u003cbr\u003e**docker run:** `docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=\u003csuper secure password\u003e' -p 1433:1433 -d mcr.microsoft.com/mssql/server:2019-CU4-ubuntu-16.04`\u003cbr\u003e\u003cbr\u003e**docker ps:** `docker ps --all`\u003cbr\u003e\u003cbr\u003e**docker stop:** `docker stop \u003ccontainer ID\u003e`\u003cbr\u003e\u003cbr\u003e**docker rm:** `docker rm \u003ccontainer ID\u003e`|\n|Version Control System|[Git](https://git-scm.com)|-|A distributed version control system.|**git clone:** `git clone \u003crepository URL\u003e`\u003cbr\u003e\u003cbr\u003e**git tag:** `git tag -n9`\u003cbr\u003e\u003cbr\u003e**git checkout:** `git checkout \u003ctag name\u003e`\u003cbr\u003e\u003cbr\u003e|\n|Database|[Azure Data Studio](https://docs.microsoft.com/en-us/sql/azure-data-studio/download-azure-data-studio?view=sql-server-ver15), [SQL Server](https://www.microsoft.com/en-us/sql-server/sql-server-2019)|v0.1.0|Azure Data Studio is a MSSQL database client.\u003cbr\u003e\u003cbr\u003eSQL Server is a RDBMS created by Microsoft.|-|\n|Backend|[Koa](https://koajs.com/), [Nodemon](https://nodemon.io/), [GraphQL](https://graphql.org/)|v0.2.0|Koa is a new framework developed by the Express team and that runs on top of the NodeJS runtime.\u003cbr\u003e\u003cbr\u003eNodemon is a files watcher for server reload at development time.\u003cbr\u003e\u003cbr\u003eGraphQL is a graphs based query language that can query multiple sources such as databases, APIs, or documents.|**npm i (from root folder):** `npm i`\u003cbr\u003e\u003cbr\u003e**npm i nodemon (from root folder):** `npm i nodemon -g`\u003cbr\u003e\u003cbr\u003e**nodemon index.js (from ./server folder):** `nodemon index.js`\u003cbr\u003e\u003cbr\u003e|\n|Frontend|[NextJS](https://nextjs.org/), [Tailwind](https://tailwindcss.com/)|v0.3.0|NextJS is A JAMSTACK based framework for frontend.\u003cbr\u003e\u003cbr\u003eTailwind is a CSS framework based on functional programming principles.|**npm i (from ./client folder):** `npm i`\u003cbr\u003e\u003cbr\u003e**npm run (from ./client folder):** `npm run dev`\u003cbr\u003e\u003cbr\u003e|\n## Architecture\n### Backend\n![Koa and GraphQL Architecture](https://raw.githubusercontent.com/manuelro/koa-graphql-mssql/master/assets/arch-backend.png)\n## Demos\n### Client\n![NextJS, TailwindCSS, Koa and GraphQL client](https://github.com/manuelro/koa-graphql-mssql/blob/master/assets/demo-frontend.png?raw=true)\n### GraphQL Playground\n![NextJS, TailwindCSS, Koa and GraphQL client](https://github.com/manuelro/koa-graphql-mssql/blob/master/assets/demo-backend.png?raw=true)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanuelro%2Fkoa-graphql-mssql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanuelro%2Fkoa-graphql-mssql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanuelro%2Fkoa-graphql-mssql/lists"}