Words can change the world
This is where i write about what i learn
Find with Tags
Tìm hiểu Ethers
1.Provider Mình sẽ mượn 1 node của Infura để kết nối vào network bằng JSONRpcProvider (Remote Produce Call)- một ethers provider giúp ứng dụng gửi request thông qua HTTP/HTTPS và nhận về response là JSON const { ethers } = require('ethers'); const INFURA_ID = '8fd3f50f20814fbe8372ba5687ad08de'; co...
Jul 21, 2023minhthuong031103
NestJS, WebSocketGateway và SocketIO
Tạo một Websocket server npm i --save @nestjs/websockets @nestjs/platform-socket.io Tạo một folder gateway, bỏ module gateway vào import { Module } from '@nestjs/common'; import { MyGateway } from './gateway'; @Module({ providers: [MyGateway], }) export class GatewayModule {} Tạo gateway.ts bỏ ...
Jul 21, 2023minhthuong031103
Code cùng Anson (P1): NestJS-MySQL Type ORM
Code cùng AnSon NestJS-MySQL (P1) Hai modules chính của phần này là auth và user Các thư viện sẽ sử dụng: npm i class-validator class-transformer @nestjs/passport passport passport-local express-session @nestjs/typeorm typeorm mysql2 Code cùng AnSon NestJS-MySQL (P1) Dùng intellisense cho env Kết...
Jul 11, 2023minhthuong031103
NextJS, Redux
Cài redux và redux toolkit npm i react-redux @reduxjs/toolkit Sử dụng redux bằng cách tạo folder redux Xác định có bao nhiêu slice? Ở đây có 2, Cart và Payment cartSlice.ts import { createSlice, PayloadAction } from '@reduxjs/toolkit'; import { Product } from '@/graphql/types'; export interface ...
Jun 18, 2023minhthuong031103