Skip to content

Instantly share code, notes, and snippets.

View vallamost's full-sized avatar
🐙
Feeling

Ian vallamost

🐙
Feeling
View GitHub Profile
@leanazulyoro
leanazulyoro / server.js
Last active July 22, 2024 05:21
Next.js SSR Cache using LRU Cache
const express = require('express')
const next = require('next')
const Cache = require('lru-cache');
const compression = require('compression')
const port = parseInt(process.env.PORT, 10) || 3000
const dev = process.env.NODE_ENV !== 'production'
const app = next({ dev })
@nghuuphuoc
nghuuphuoc / gist:7398312
Last active March 17, 2021 02:58
Install npm, nodejs on Centos 6
# Enable Fedora Extra Packages for Enterprise Linux (EPEL) repos
$ rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
# Install npm from the epel repos
$ sudo yum install npm --enablerepo=epel