Google Apps Script Web App Boilerplate - Online Starter Code
Generate the doGet() and doPost() boilerplate for a Google Apps Script web app. Ready to paste into the editor.
UD5 Toolkit
Configuration updates in real-time as you make changes.
.babelrc or babel.config.js) tell Babel which presets and plugins to use, allowing you to customize the transformation for your specific project needs..babelrc is a JSON file for project-wide configuration (applies to files in the same directory). babel.config.js is a JavaScript file that supports dynamic configuration and applies to the entire project root, including node_modules. Use babel.config.js for monorepos or when you need programmatic configuration.@babel/preset-env is a smart preset that automatically determines which plugins and polyfills you need based on your target environments. Instead of manually selecting individual plugins, preset-env analyzes your browserslist targets and includes only the necessary transforms, keeping your bundle lean and efficient.@babel/preset-react whenever your project uses JSX syntax. The classic runtime requires import React from 'react' in every file, while the automatic runtime (React 17+) auto-imports JSX helpers, reducing boilerplate and bundle size.@babel/preset-typescript strips TypeScript types without performing type checking, making it much faster than tsc. It's ideal for development and bundling workflows. For type safety, you should still run tsc --noEmit separately in your CI pipeline.useBuiltIns: 'usage' automatically imports only the polyfills your code actually uses, based on your target browsers. useBuiltIns: 'entry' requires you to manually import core-js at your entry point, and Babel replaces it with targeted polyfills. The corejs option specifies which version of core-js to use (3.x is recommended).@babel/preset-env with default settings, which targets the default browserslist query.debug: true option in @babel/preset-env to see which plugins and polyfills are being applied. You can also run Babel with the BABEL_SHOW_CONFIG_FOR=./path/to/file environment variable to inspect the resolved configuration for a specific file.Generate the doGet() and doPost() boilerplate for a Google Apps Script web app. Ready to paste into the editor.
Interactive cheatsheet for JavaScript regular expressions with live examples. Click any token to see its explanation and test it on sample text immediately.
Select a Node.js version from the LTS list and instantly download a .nvmrc file. Lock your project’s runtime.
Select text and see the Selection object properties. Create ranges programmatically. Understand how rich‑text editors work.
Create a Blob from text or a file and generate a temporary URL for it. Understand the Blob API. Dev demo.
Create a looping animated gradient background with multiple color stops. Copy the complete CSS keyframes. Eye‑catching.
Generate an SVG placeholder image with custom text, width, height, and colors. Use as a placeholder service. Pure SVG.
Generate strong random strings for API tokens, session secrets, or encryption keys. Uses crypto.getRandomValues().
Drag and drop pieces to set up a chess position. Generate FEN string and copy to share. Analyze openings. Local only.
Create CSS animations and transitions without coding. Define keyframes, easing, and duration. Copy the @keyframes and animation code instantly.
Generate truly random numbers within a specified range. Useful for contests, game decisions, and sampling. Runs locally, no hidden algorithms.
Create and format Markdown tables by adjusting rows and columns. Align text, copy the raw Markdown. Perfect for README files.
Select emojis and arrange them into a seamless tiling background. Copy the CSS data‑URI or download as image.
Search for common ingredient substitutions (e.g., buttermilk, egg, cornstarch). Quick reference for when you're missing something. Local data.
Search and copy HTML entities for arrows, math, currency, and symbols. See the glyph and code. Fast reference.
Drag words to the correct position in a sentence using in, on, at. Visual feedback.
Generate a DKIM DNS record from a public key and selector. Check syntax. Improve your domain’s email deliverability.
Combine two random concepts to spark the next billion‑dollar startup idea. Silly or serious, it's brainstorming fun.
Generate a humorous, realistic‑looking git commit message. Perfect for testing or filling mock repos.
Convert animated GIFs to animated WebP format for smaller file size. Choose quality level. All processing in browser.
Add some trendy skills to your resume. Generate a list of hard and soft skills relevant for tech and business jobs.
See how `animation‑composition: replace, add, accumulate` works by layering animations on the same property. Understand the spec.
Generate a subtle noise/grain texture as a CSS background pattern. Adjust opacity and size. For that film look.
Stack multiple background images and blend them with colors. Create unique textures. Copy the CSS code instantly.
Chain multiple CSS filter functions and see the result on an image. Copy the filter string. No upload.
Choose the right extinguisher for kitchen, electrical, or garage fires. Interactive class chart. Home safety education.
Upload an image and get its BlurHash string along with a tiny preview. Use for progressive loading. Pure JavaScript.
Easily compute posterior probabilities given prior, likelihood, and marginal likelihood. Visual diagram. All local.
Generate a link to an SVG placeholder image with a custom width, height, and text. Use as dummy image src. No server.
Trim a video clip and convert it into an animated GIF. Adjust frame rate and size. Processing stays on your computer for privacy.