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
[iPhone 6s]: INFO: HMR: Hot Module Replacement Enabled. Waiting for signal. | |
2020-08-13 11:36:33.536 nsplaydev[8557:706933] PlayLiveSync: applicationDidFinishLaunching | |
2020-08-13 11:36:33.600 nsplaydev[8557:706933] ***** Fatal JavaScript exception - application has been terminated. ***** | |
2020-08-13 11:36:33.600 nsplaydev[8557:706933] Native stack trace: | |
1 0x10319b2fc NativeScript::reportFatalErrorBeforeShutdown(JSC::ExecState*, JSC::Exception*, bool) | |
2 0x1031d1a38 NativeScript::FFICallback<NativeScript::ObjCMethodCallback>::ffiClosureCallback(ffi_cif*, void*, void**, void*) | |
3 0x103cc4afc ffi_closure_SYSV_inner | |
4 0x103cc81b4 .Ldo_closure | |
5 0x19f000644 <redacted> | |
6 0x19f00068c <redacted> |
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: