From 69b54f4e8589a0eae3657f8aeac7b7b7a38ec09b Mon Sep 17 00:00:00 2001 From: Dm1tr1y147 Date: Tue, 6 Oct 2020 16:35:29 +0500 Subject: [PATCH] Switched to express and mongoDB --- README.md | 9 - package-lock.json | 73 --- package.json | 21 +- prisma/dev.db | Bin 65536 -> 0 bytes .../README.md | 103 ---- .../schema.prisma | 46 -- .../steps.json | 551 ------------------ prisma/migrations/migrate.lock | 3 - prisma/schema.prisma | 46 -- src/index.ts | 14 - src/list.test.json | 5 - src/main.ts | 16 + src/middlewares.ts | 8 + src/router/index.ts | 19 + tsconfig.json | 69 +++ 15 files changed, 124 insertions(+), 859 deletions(-) delete mode 100644 README.md delete mode 100644 package-lock.json delete mode 100644 prisma/dev.db delete mode 100644 prisma/migrations/20201003131039-initial-structure/README.md delete mode 100644 prisma/migrations/20201003131039-initial-structure/schema.prisma delete mode 100644 prisma/migrations/20201003131039-initial-structure/steps.json delete mode 100644 prisma/migrations/migrate.lock delete mode 100644 prisma/schema.prisma delete mode 100644 src/index.ts delete mode 100644 src/list.test.json create mode 100644 src/main.ts create mode 100644 src/middlewares.ts create mode 100644 src/router/index.ts create mode 100644 tsconfig.json diff --git a/README.md b/README.md deleted file mode 100644 index 307ee58..0000000 --- a/README.md +++ /dev/null @@ -1,9 +0,0 @@ -# QuestionForm Backend - -Backend used with QuestionForm application. - -# Built with: - -- Prisma -- Graphql -- Graphql-yoga diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 069c3db..0000000 --- a/package-lock.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "name": "backend", - "version": "1.0.0", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "@prisma/cli": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/@prisma/cli/-/cli-2.7.1.tgz", - "integrity": "sha512-0uA+gWkNQ35DveVHDPltiTCTr4wcXtEhnPs463IEM+Xn8dTv9x0gtZiYHSuQM3t7uwlOxj1rurBsqSbiljynfQ==", - "dev": true - }, - "@prisma/client": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/@prisma/client/-/client-2.7.1.tgz", - "integrity": "sha512-IEWDCuvIaQTira8/jAyf+uY+AuPPUFDIXMSN4zEA/gvoJv2woq7RmkaubS+NQVgDbbyOR6F3UcXLiFTYQDzZkQ==", - "requires": { - "pkg-up": "^3.1.0" - } - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "requires": { - "locate-path": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" - }, - "pkg-up": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", - "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", - "requires": { - "find-up": "^3.0.0" - } - } - } -} diff --git a/package.json b/package.json index bf79765..75f4c97 100644 --- a/package.json +++ b/package.json @@ -1,18 +1,21 @@ { "name": "backend", "version": "1.0.0", - "main": "src/index.ts", + "main": "index.js", + "repository": "https://github.com/Dm1tr1y147/questionForm_backend.git", + "author": "Dm1tr1y147 ", "license": "MIT", - "dependencies": { - "@prisma/client": "^2.7.1", - "graphql-yoga": "^1.18.3" + "devDependencies": { + "@types/express": "^4.17.8", + "@types/mongoose": "^5.7.36", + "@types/node": "^14.11.2", + "ts-node-dev": "^1.0.0-pre.63", + "typescript": "^4.0.3" }, "scripts": { - "dev": "ts-node src/index.ts" + "start": "ts-node-dev src/main.ts" }, - "devDependencies": { - "@prisma/cli": "^2.7.1", - "ts-node": "^9.0.0", - "typescript": "^4.0.3" + "dependencies": { + "mongoose": "^5.10.7" } } diff --git a/prisma/dev.db b/prisma/dev.db deleted file mode 100644 index 6f8ead2e6be40c2690373ab6937357a48e18dc3b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 65536 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%0DSygV=3a3=}d#Yu6 zll4q0Y85Syk!VOQjR|V1vYjUQPLx$8jznBmanbZSR47wEb(uO2DXGcGiq%88<4pEf z$*0CUa?%O`Oi?|)bj<=5k9T4Ln{C{u$9~*w`QIj2OGdLTcl&{pXgaMDw&-DCxs>gl zklx2;JPV?zcV)8PzsLzeC?X@pG6|`(O3q%Nl0CZLccJ{00kmgRkJNWh3E%RiPCA>` zfou3y-+|k@eLLtmsq-#9vb^xDKj3YchHtb_*k{sgwe@fGEx2<(ux|(ToeaZX-=sFQmWB0#5$pMeA8^~| zqQhzo2DSyVAP>|J&#NjExM0;&v$JP(zn>9`CEIp9pAKe%B^b$jhDSTSgq*wZOOCp3 z-<=73K{&WRaIwKPbVfj|H`+Qdx1t{4D8vA6vNI)RFH9qCTRjSQOfG%*EywcSj6w8d z1T&S#^e^A$No)j>uhl|H@p=W+qG`bvhM=(F%fPjIhI{fY1%-K<(A7lhXt>A&)k$Gv z#Yn?;`wr+W1N3Xl0Qh)+U_~&4z&dcCE#CMU+)16FCwht+3C{uK`=G${?FX@GQ;y{T zPGFuK&T>O}E+}CooRV$*`HtRN)4{4>NRMeSOhRUbh63#wR=$x?DS@N1W^8fATg_BG z*=3hJX+8Y|fT7Iuh)W2Vb^OH>qan6Enbp-0c+_o9d)bc9YchnFQ8Se;hVtHrYSEe0 z>$(=~Zo|E)td&tInd9T=*#UE7rcB@XFwT%nk)9`8`S%&Hoxrg`1p~gZ6d)XN5HK8a zBCcRcw@{}~Adr}CkX8CAdc;Bp0%Uy2Y;)VBPJ~8}PprwP012t;JL}Y@K5cY4r`N&g z@LOQqK(Hak2V{guW+@XM>{l# z_2E6*GiJvPStmk=&Z^==Uza_1%hfB)A}vrTai{}*U2tF~k42-eyDPlPDCj&=ico>717d!a(RB=i4!}>>pR`8z&ZP(=q9> ze3%P1pfKb?T7}1jAIuJq8qtPOuL1fNl3GqWp=HzIDQ6;43*y7OuWSB)|91PI;QoJx zng9F&wR;eR$!sK>q8jSnsimhTtP|dM#0?NnG9jxH;`{t(E8^r{X7WmMWt@g(svH?M zJoTuPT`Q+hK~3_^={L4AL~da!Bd{>9xkSq{OddA8t)}s9#o31G6w(rHAAtveng21T zKuDj98s9hoUI-%yRb}F`w$pt1{?l;Jp&_+25({F~UsH)~rf5kfRtskSo4{8R5QQHK z|8}X$u(D~uxk^G^c$oQ*ng1fZ#oww+XJ;FU8{I(K~nHpk3{%bMB1^8ZD_SwdaNC(7p9C`D%=cQErmtY5fr zIw2OB=+VxAN1I3#Dy)z}Uw8NxRud?_i)q`%>ll4q^mYHwecdurGGW%ts*4ck - console.log(`Server is running on http://localhost:${port}`) -) diff --git a/src/list.test.json b/src/list.test.json deleted file mode 100644 index 5c1503f..0000000 --- a/src/list.test.json +++ /dev/null @@ -1,5 +0,0 @@ -[ - { - - } -] \ No newline at end of file diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..1c51a79 --- /dev/null +++ b/src/main.ts @@ -0,0 +1,16 @@ +import express from "express" +import bodyParser from "body-parser" + +import { router } from "./router" +import { logger } from "./middlewares" + +const app = express() + +app.use(bodyParser.json()) +app.use(logger) + +app.use(router) + +app.listen(3000, () => { + console.log("server is listening on port 3000") +}) diff --git a/src/middlewares.ts b/src/middlewares.ts new file mode 100644 index 0000000..781d86c --- /dev/null +++ b/src/middlewares.ts @@ -0,0 +1,8 @@ +import { RequestHandler } from "express" + +const logger: RequestHandler = (req, res, next) => { + console.log(`sent ${req.method} request to ${req.hostname}${req.url}`) + next() +} + +export { logger } diff --git a/src/router/index.ts b/src/router/index.ts new file mode 100644 index 0000000..e9540bd --- /dev/null +++ b/src/router/index.ts @@ -0,0 +1,19 @@ +import express from "express" + +const router = express.Router() + +router.get( + "/api/test", + (req: express.Request, res: express.Response) => { + return res.send(`Hello, ${req.query.name}`) + } +) + +router.post( + "/api/test", + async (req: express.Request, res: express.Response) => { + return res.send(`Hello, hidden ${req.body.name}`) + } +) + +export { router } diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..1c62c46 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,69 @@ +{ + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + + /* Basic Options */ + // "incremental": true, /* Enable incremental compilation */ + "target": "es5" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */, + "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */, + // "lib": [], /* Specify library files to be included in the compilation. */ + // "allowJs": true, /* Allow javascript files to be compiled. */ + // "checkJs": true, /* Report errors in .js files. */ + // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ + // "declaration": true, /* Generates corresponding '.d.ts' file. */ + // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ + // "sourceMap": true, /* Generates corresponding '.map' file. */ + // "outFile": "./", /* Concatenate and emit output to single file. */ + // "outDir": "./", /* Redirect output structure to the directory. */ + // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ + // "composite": true, /* Enable project compilation */ + // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */ + // "removeComments": true, /* Do not emit comments to output. */ + // "noEmit": true, /* Do not emit outputs. */ + // "importHelpers": true, /* Import emit helpers from 'tslib'. */ + // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ + // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ + + /* Strict Type-Checking Options */ + "strict": true /* Enable all strict type-checking options. */, + // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ + // "strictNullChecks": true, /* Enable strict null checks. */ + // "strictFunctionTypes": true, /* Enable strict checking of function types. */ + // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ + // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ + // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ + // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ + + /* Additional Checks */ + // "noUnusedLocals": true, /* Report errors on unused locals. */ + // "noUnusedParameters": true, /* Report errors on unused parameters. */ + // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ + // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ + + /* Module Resolution Options */ + // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ + // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ + // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ + // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ + // "typeRoots": [], /* List of folders to include type definitions from. */ + // "types": [], /* Type declaration files to be included in compilation. */ + // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ + "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */, + // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ + // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ + + /* Source Map Options */ + // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ + // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ + // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ + // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ + + /* Experimental Options */ + // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ + // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ + + /* Advanced Options */ + "skipLibCheck": true /* Skip type checking of declaration files. */, + "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ + } +}