# workin **Repository Path**: mirrors_mikeal/workin ## Basic Information - **Project Name**: workin - **Description**: Cloudflare worker toolkit - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2025-09-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # workin ![6466](https://img.shields.io/badge/compiled%20bundle-6k-green) ![2582](https://img.shields.io/badge/gzipped%20bundle-3k-brightgreen) Cloudflare worker toolkit Usage: ```javascript const workin = require('workin') workin(async event => { const request = event.request return workin.json({ hello: 'world' }) }) ``` Catches errors: ```javascript workin(async event => { request.log('debugging!') throw new Error('Big error!') }) ``` The worker should produce an HTML response that captures the logs and exception information.