You need to provide some classes and decorators yourself to maintain the same style as [email protected]
.
@EntityRepository(UserEntity)
export class UserRepository extends Repository<UserEntity> {}
↓
src | |
├─ app | |
│ ├─ auth (Folder) | |
│ │ ├─ auth routes config (File) | |
│ │ ├─ login (Standalone-Component) | |
│ │ ├─ register (Standalone-Component) | |
│ │ └─ ... | |
│ │ | |
│ ├─ core (Folder) | |
│ │ ├─ core providers config (File) |
You need to provide some classes and decorators yourself to maintain the same style as [email protected]
.
@EntityRepository(UserEntity)
export class UserRepository extends Repository<UserEntity> {}
↓
import React from 'react'; | |
import { withErrorBoundary } from 'components/common/MartyErrorBoundary'; | |
export const ExampleComponent = () => { | |
return ( | |
<div> | |
Component | |
</div> | |
); |
FROM node:fermium-alpine AS builder | |
WORKDIR /app/builder | |
COPY . . | |
# https://github.com/nodejs/docker-node/issues/384#issuecomment-305208112 | |
RUN apk --no-cache add --virtual native-deps \ | |
git g++ gcc libgcc libstdc++ linux-headers make python && \ | |
yarn global add --silent node-gyp &&\ | |
yarn --silent && \ | |
apk del native-deps |
Nx is a suite of powerful, extensible dev tools to help you architect, test, and build at any scale — integrating seamlessly with modern technologies and libraries while providing a robust CLI, caching, dependency management, and more.
It has first-class support for many frontend and backend technologies, so its documentation comes in multiple flavours.
import { useEffect } from "react"; | |
import { useDebounce } from "hooks"; | |
const App = () => { | |
const debounce = useDebounce(); | |
useEffect(() => { | |
debounce(() => { | |
console.log('Hello world') |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |