title | published | description | tags | cover_image | series |
---|---|---|---|---|---|
Tutorial: Styling Angular CLI Apps with Bootstrap |
true |
In this tutorial, you learn how to use Bootstrap to style Angular Apps. |
angular, bootstrap, tutorial, beginners |
Styling Angular CLI Apps |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl 'http://api.loklak.org/api/user.json?screen_name=amcdnl&followers=10000&following=10000' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const myRule = (_: any): Rule => { | |
return (tree: Tree): Tree => { | |
const files: any[] = []; | |
tree.visit((file) => { | |
files.push(file); | |
}); | |
console.log("Files count", files.length); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:12-alpine | |
# FROM node:12 use the Ubuntu-based versions if you have issues building deps on Alpine | |
# Set some Yarn settings | |
RUN yarn config set cache-folder ~/.yarn \ | |
&& yarn config set network-timeout 300000 -g \ | |
&& yarn config set prefer-offline true | |
# Create app directory | |
WORKDIR /workspace |
For my NestJS API I want to be able to automatically generate my GraphQL CRUD code that I keep on repeating, based on the model that I want to work on.
This is very similar to what for instance nestjsx/crud does for Rest API's.
Another similar project is doug-martin/nestjs-query
The API I'd like to use is the following: