Skip to content

Commit 1747001

Browse files
committed
Dependency injectable provider that wraps Shopify API client
0 parents  commit 1747001

19 files changed

+8670
-0
lines changed

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

Diff for: .npmignore

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# compiled output
2+
/dist
3+
/node_modules
4+
5+
# Logs
6+
logs
7+
*.log
8+
npm-debug.log*
9+
yarn-debug.log*
10+
yarn-error.log*
11+
lerna-debug.log*
12+
13+
# OS
14+
.DS_Store
15+
16+
# Tests
17+
/coverage
18+
/.nyc_output
19+
20+
# IDEs and editors
21+
/.idea
22+
.project
23+
.classpath
24+
.c9/
25+
*.launch
26+
.settings/
27+
*.sublime-workspace
28+
29+
# IDE - VSCode
30+
.vscode/*
31+
!.vscode/settings.json
32+
!.vscode/tasks.json
33+
!.vscode/launch.json
34+
!.vscode/extensions.json

Diff for: .prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "all"
4+
}

Diff for: README.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<h1 align="center"></h1>
2+
3+
<div align="center">
4+
<a href="http://nestjs.com/" target="_blank">
5+
<img src="https://nestjs.com/img/logo_text.svg" width="150" alt="Nest Logo" />
6+
</a>
7+
</div>
8+
9+
<h3 align="center">NestjsShopify</h3>
10+
11+
### Installation
12+
13+
To install this project:
14+
15+
```bash
16+
npm install
17+
```
18+
19+
(or yarn equivalent)
20+
21+
### Running
22+
23+
```bash
24+
npm run start:dev
25+
```
26+
27+
Then connect to [http://localhost:3000](http://localhost:3000).
28+
29+
### Customizing
30+
31+
The files in the project have comments that should help guide you.
32+
33+
You can also refer to [this article](https://dev.to/nestjs/advanced-nestjs-how-to-build-completely-dynamic-nestjs-modules-1370) for details on the concepts behind this module pattern.
34+
35+
### Big Ups
36+
37+
- [Nest Dynamic Package Generator Schematics](https://github.com/nestjsplus/dyn-schematics) generates a starter template for building NestJS dynamic packages. It uses the `@nestjs/cli` core package, and provides customized schematics for generating modular NestJS applications. See [here](https://github.com/nestjsplus/dyn-schematics) for the full set of available schematics, and documentation.

Diff for: nest-cli.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"language": "ts",
3+
"collection": "@nestjs/schematics",
4+
"sourceRoot": "src"
5+
}

0 commit comments

Comments
 (0)