Skip to content

Commit 9ee6a6d

Browse files
committed
chore: initial commit
1 parent 5cf7da0 commit 9ee6a6d

File tree

5 files changed

+1472
-2063
lines changed

5 files changed

+1472
-2063
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,5 @@ testem.log
3737
# System Files
3838
.DS_Store
3939
Thumbs.db
40+
41+
.env

README.md

+1-92
Original file line numberDiff line numberDiff line change
@@ -1,94 +1,3 @@
1-
2-
31
# NestLab
42

5-
This project was generated using [Nx](https://nx.dev).
6-
7-
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-logo.png" width="450"></p>
8-
9-
🔎 **Smart, Extensible Build Framework**
10-
11-
## Adding capabilities to your workspace
12-
13-
Nx supports many plugins which add capabilities for developing different types of applications and different tools.
14-
15-
These capabilities include generating applications, libraries, etc as well as the devtools to test, and build projects as well.
16-
17-
Below are our core plugins:
18-
19-
- [React](https://reactjs.org)
20-
- `npm install --save-dev @nrwl/react`
21-
- Web (no framework frontends)
22-
- `npm install --save-dev @nrwl/web`
23-
- [Angular](https://angular.io)
24-
- `npm install --save-dev @nrwl/angular`
25-
- [Nest](https://nestjs.com)
26-
- `npm install --save-dev @nrwl/nest`
27-
- [Express](https://expressjs.com)
28-
- `npm install --save-dev @nrwl/express`
29-
- [Node](https://nodejs.org)
30-
- `npm install --save-dev @nrwl/node`
31-
32-
There are also many [community plugins](https://nx.dev/community) you could add.
33-
34-
## Generate an application
35-
36-
Run `nx g @nrwl/react:app my-app` to generate an application.
37-
38-
> You can use any of the plugins above to generate applications as well.
39-
40-
When using Nx, you can create multiple applications and libraries in the same workspace.
41-
42-
## Generate a library
43-
44-
Run `nx g @nrwl/react:lib my-lib` to generate a library.
45-
46-
> You can also use any of the plugins above to generate libraries as well.
47-
48-
Libraries are shareable across libraries and applications. They can be imported from `@nest-lab/mylib`.
49-
50-
## Development server
51-
52-
Run `nx serve my-app` for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.
53-
54-
## Code scaffolding
55-
56-
Run `nx g @nrwl/react:component my-component --project=my-app` to generate a new component.
57-
58-
## Build
59-
60-
Run `nx build my-app` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
61-
62-
## Running unit tests
63-
64-
Run `nx test my-app` to execute the unit tests via [Jest](https://jestjs.io).
65-
66-
Run `nx affected:test` to execute the unit tests affected by a change.
67-
68-
## Running end-to-end tests
69-
70-
Run `ng e2e my-app` to execute the end-to-end tests via [Cypress](https://www.cypress.io).
71-
72-
Run `nx affected:e2e` to execute the end-to-end tests affected by a change.
73-
74-
## Understand your workspace
75-
76-
Run `nx dep-graph` to see a diagram of the dependencies of your projects.
77-
78-
## Further help
79-
80-
Visit the [Nx Documentation](https://nx.dev) to learn more.
81-
82-
83-
84-
## ☁ Nx Cloud
85-
86-
### Distributed Computation Caching & Distributed Task Execution
87-
88-
<p style="text-align: center;"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-cloud-card.png"></p>
89-
90-
Nx Cloud pairs with Nx in order to enable you to build and test code more rapidly, by up to 10 times. Even teams that are new to Nx can connect to Nx Cloud and start saving time instantly.
91-
92-
Teams using Nx gain the advantage of building full-stack applications with their preferred framework alongside Nx’s advanced code generation and project dependency graph, plus a unified experience for both frontend and backend developers.
93-
94-
Visit [Nx Cloud](https://nx.app/) to learn more.
3+
This repo is to manage open source libraries that integrate with the NestJS framework, but don't quite belong in the core repo. Kind of like an experimental hold for packages to see how they do. I'll add more docs later when they start to matter more

nx.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,17 @@
1212
},
1313
"tasksRunnerOptions": {
1414
"default": {
15-
"runner": "@nrwl/workspace/tasks-runners/default",
15+
"runner": "@nrwl/nx-cloud",
1616
"options": {
1717
"cacheableOperations": [
1818
"build",
1919
"lint",
2020
"test",
2121
"e2e"
22-
]
22+
],
23+
"accessToken": "",
24+
"canTrackAnalytics": false,
25+
"showUsageWarnings": true
2326
}
2427
}
2528
},
@@ -36,4 +39,4 @@
3639
"appsDir": "packages",
3740
"libsDir": "packages"
3841
}
39-
}
42+
}

0 commit comments

Comments
 (0)