Skip to content

Instantly share code, notes, and snippets.

@lamhungypl
lamhungypl / nx-structure-angular-nestjs.md
Created October 22, 2022 19:16 — forked from trungvose/nx-structure-angular-nestjs.md
Nx workspace structure for NestJS and Angular

Nx

https://nx.dev/

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.

Principles

@lamhungypl
lamhungypl / component-template.md
Last active January 11, 2022 02:58
New component react cli
// component-template.js
const toPascalCase = (str) =>
  str
    .split(/\W/)
    .map((s) =>
      s.replace(
        /\w\S*/g,
        (m) => `${m.charAt(0).toUpperCase()}${m.substring(1).toLowerCase()}`,
      ),
@lamhungypl
lamhungypl / readme.md
Created August 13, 2020 06:41 — forked from astoilkov/readme.md
Async Operations with useReducer Hook

Async Operations with useReducer Hook

9 March, 2019

We were discussing with @erusev what we can do with async operation when using useReducer() in our application. Our app is simple and we don't want to use a state management library. All our requirements are satisfied with using one root useReducer(). The problem we are facing and don't know how to solve is async operations.

In a discussion with Dan Abramov he recommends Solution 3 but points out that things are fresh with hooks and there could be better ways of handling the problem.

Problem