Xây dựng cấu trúc dự án Nodejs
Yêu cầu cảu dự án: Dự án xây dựng về cái gì Tính năng bao gồm những gì Các công nghệ sử dụng: Node js Express Mongo - mongoose Helmet…
Yêu cầu cảu dự án: Dự án xây dựng về cái gì Tính năng bao gồm những gì Các công nghệ sử dụng: Node js Express Mongo - mongoose Helmet…
pull image mysql và phpmyadmin docker pull mysql:latest docker pull phpmyadmin:latest Tạo network mysql docker network create mysql Tạo thư mục mysql, trong thư mục này tạo file docker-compose.yml với…
Cài đặt Redis Cài đặt gói EPEL: sudo yum install epel-release Cài đặt Redis: sudo yum install redis -y Start Redis service: sudo systemctl start redis.service Bật Redis mỗi khi…
Xem trạng thái sestatus Chỉnh sửa trạng thái SELinux nano /etc/sysconfig/selinux
Tìm tất cả các document chỉ trừ document đặc biệt sử dụng $ne: db.inventory.find( { quantity: { $ne: 20 } } ) Tìm tất cả các document trừ 1 số…
1. Install the npm-check-updates package globally: npm install -g npm-check-updates 2. Now run npm-check-updates to upgrade all version hints in package.json, allowing installation of the new major versions: ncu -u 3. Finally, run…
https://viblo.asia/p/gioi-thieu-ve-lodash-va-mot-so-ham-thuong-dung-3Q75w2zGlWb https://github.com/nathanpeck/socket.io-chat-fargate https://www.w3resource.com/redis/redis-hset-key-field-value.php
Spacing Bootstrap 5 has a wide range of responsive margin and padding utility classes. They work for all breakpoints: xs (<=576px), sm (>=576px), md (>=768px), lg (>=992px), xl (>=1200px) or xxl (>=1400px)): The classes are used in the format: {property}{sides}-{size} for xs and {property}{sides}-{breakpoint}-{size} for sm, md, lg, xl and xxl. Where property is one of:…
mongo show dbs use <your_db_name> show collections db.myCollection.find() db.myCollection.find().pretty() db.studentdata.getIndexes() db.studentdata.dropIndex({student_name: 1}) db.studentdata.dropIndexes() mongodump -d database_name -o directory_to_store_dumps mongorestore -d database_name directory_backup_where_mongodb_tobe_restored
PM2 is a daemon process manager that will help you manage and keep your application online. Getting started with PM2 is straightforward, it is offered as a simple and intuitive…