Skip to content

Instantly share code, notes, and snippets.

View claudiohilario's full-sized avatar
🎯
Focusing

Cláudio Hilário claudiohilario

🎯
Focusing
  • Guarda, Portugal
View GitHub Profile
@NigelEarle
NigelEarle / Knex-Setup.md
Last active May 4, 2024 13:36
Setup Knex with Node.js

Knex Setup Guide

Create your project directory

Create and initialize your a directory for your Express application.

$ mkdir node-knex-demo
$ cd node-knex-demo
$ npm init
@tomysmile
tomysmile / mac-setup-redis.md
Last active May 23, 2024 03:17
Brew install Redis on Mac

type below:

brew update
brew install redis

To have launchd start redis now and restart at login:

brew services start redis