Nestjs + Neo4j Integration

Faaiz SHAH
4 min readSep 23, 2019
Nestjs+Neo4j_Integration

Step 1 : Creating application and Package Manager

First create NestJS project for your application. During the project creation, it will ask to select package manager. Select as per your convenience. I selected npm.

$ nest new neo4j-nestjs-api⚡ We will scaffold your app in a few seconds..CREATE /neo4j-nestjs-api/.prettierrc (51 bytes)
CREATE /neo4j-nestjs-api/README.md (3370 bytes)
CREATE /neo4j-nestjs-api/nest-cli.json (84 bytes)
CREATE /neo4j-nestjs-api/package.json (1724 bytes)
CREATE /neo4j-nestjs-api/tsconfig.build.json (97 bytes)
CREATE /neo4j-nestjs-api/tsconfig.json (336 bytes)
CREATE /neo4j-nestjs-api/tslint.json (426 bytes)
CREATE /neo4j-nestjs-api/src/app.controller.spec.ts (617 bytes)
CREATE /neo4j-nestjs-api/src/app.controller.ts (274 bytes)
CREATE /neo4j-nestjs-api/src/app.module.ts (249 bytes)
CREATE /neo4j-nestjs-api/src/app.service.ts (142 bytes)
CREATE /neo4j-nestjs-api/src/main.ts (208 bytes)
CREATE /neo4j-nestjs-api/test/app.e2e-spec.ts (561 bytes)
CREATE /neo4j-nestjs-api/test/jest-e2e.json (183 bytes)
? Which package manager would you ❤️ to use? npm
✔ Installation in progress… ☕
🚀 Successfully created project neo4j-nestjs-api
👉 Get started with the following commands:
$ cd…

--

--