Skip to content

Instantly share code, notes, and snippets.

View byurhannurula's full-sized avatar
🏠
Working from home

Byurhan Nurula byurhannurula

🏠
Working from home
View GitHub Profile
@kettanaito
kettanaito / README.md
Last active July 2, 2024 04:36
Chromium on Vercel (serveless)

Chromium on Vercel (serverless)

This is an up-to-date guide on running Chromium in Vercel serverless functions in 2022. What you will read below is the result of two days of research, debugging, 100+ failed deployments, and a little bit of stress.

Getting started

Step 1: Install dependencies

Use chrome-aws-lambda that comes with Chromium pre-configured to run in serverless, and puppeteer-core due to the smaller size of Chromium distributive.

import React, { useState } from "react";
import { animated, useSpring, config } from "react-spring";
import "./styles.css";
export default function App() {
const [progress, setProgress] = useState("0%");
const props = useSpring({ width: progress, config: config.slow });
return (
<div className="App">
<div className="button-bar">
@fatihacet
fatihacet / package.json
Created June 1, 2015 14:35
Easily switch between your two predefined themes for Sublime Text.
{
"name": "themeswitch",
"version": "0.0.1",
"description": "Easily switch between your two predefined themes for Sublime Text.",
"dependencies": {},
"devDependencies": {
"coffee-script": "^1.9.3",
"json-format": "0.0.1"
},
"author": "Fatih Acet <fatih@fatihacet.com>"