Development

Development

226 bookmarks
Newest
Free Modern React Templates & Components for building landing pages and UIs
Free Modern React Templates & Components for building landing pages and UIs
Easily customizable modern React UI Templates and Components built using TailwindCSS which are also lightweight and simple to setup. All components are modular and fully responsive for great mobile experience as well as big desktop screens. Brand Colors are also fully customizable.
·treact.owaiskhan.me·
Free Modern React Templates & Components for building landing pages and UIs
evanw/esbuild
evanw/esbuild
An extremely fast JavaScript bundler and minifier. Contribute to evanw/esbuild development by creating an account on GitHub.
·github.com·
evanw/esbuild
Modern CSS Solutions
Modern CSS Solutions
A series examining modern CSS solutions to problems Stephanie Eckles (@5t3ph), a seasoned frontend developer, has been solving for 13+ years.
·moderncss.dev·
Modern CSS Solutions
Postwoman
Postwoman
A free, fast and beautiful API request builder
·postwoman.io·
Postwoman
The Hero Generator
The Hero Generator
Generates the code for a website header. I've had to implement the same hero for several years now, so like a good lazy programmer, I figured I'd automate it.
·hero-generator.netlify.app·
The Hero Generator
Browser Default Styles
Browser Default Styles
Search against any element for standardized and default styles from all major rendering engines (WebKit, Blink, Gecko, Trident).
·browserdefaultstyles.com·
Browser Default Styles
98.css
98.css
A design system for building faithful recreations of old UIs.
·jdan.github.io·
98.css
Spacing in CSS
Spacing in CSS
If two or more elements are close, then the user will assume that they somehow belong to each other. When grouping multiple design elements, the user can dec...
·ishadeed.com·
Spacing in CSS
Redimensionnement, Compression et Accélération d’Images • Cloudimage
Redimensionnement, Compression et Accélération d’Images • Cloudimage
Cloudimage solves the problem of slow loading image-heavy sites by automatically optimizing all images for best quality and compression ratio, adjusting for individual device screen size and delivering through a dedicated image CDN network.
·cloudimage.io·
Redimensionnement, Compression et Accélération d’Images • Cloudimage
FlexyForm - Home
FlexyForm - Home
Contact form backend as a service. Create your form and post to our URL. We handle the rest!
·flexyform.com·
FlexyForm - Home
Email Account APIs
Email Account APIs
Create real, private email addresses on demand. Send and receive emails and attachments in application code and integration tests. Intuitive REST APIs and SDK Libraries. Free for personal use.
·mailslurp.com·
Email Account APIs
nightborn-be/signum
nightborn-be/signum
Generate leads through your website with our open source solution. - nightborn-be/signum
·github.com·
nightborn-be/signum
Image and Video Upload, Storage, Optimization and CDN
Image and Video Upload, Storage, Optimization and CDN
Manage web and mobile media assets with the leading cloud service: image and video upload, storage, manipulation, optimization and digital asset management.
·cloudinary.com·
Image and Video Upload, Storage, Optimization and CDN
Spinners React
Spinners React
Lightweight SVG/CSS spinners for React
·adexin.github.io·
Spinners React
macOS 10.15 Catalina Apache Setup: Multiple PHP Versions
macOS 10.15 Catalina Apache Setup: Multiple PHP Versions
Part 1: macOS 10.15 Catalina Web Development Environment Developing web applications on macOS is a real joy. There are plenty of options for setting up your development environments, including the ever-popular MAMP Pro that provides a nice UI on top of Apache, PHP and MySQL. However, there are times when MAMP Pro has slow downs, or out of date versions, or is simply behaving badly due to its restrictive system of configuration templates and non-standard builds. It is times like these that people often look for an alternative approach, and luckily there is one, and it is rel
·getgrav.org·
macOS 10.15 Catalina Apache Setup: Multiple PHP Versions
How to abstract your code with vanilla JS
How to abstract your code with vanilla JS
One of the biggest challenges I hear about from developers is that they struggle with how to abstract their code. Today, we’re going to look at a few different examples using the fetch() method, and I’ll show you how I would abstract that code. Repeating the same task For today’s article, we’ll be using the JSONPlaceholder APIs. They let you make real API calls and get data back. For our first example, lets say you wanted to POST data to the /posts endpoint.
·gomakethings.com·
How to abstract your code with vanilla JS
How to use the URL API with vanilla JS
How to use the URL API with vanilla JS
The URL API is a browser API that lets you create a URL object from a string that you can then parse and manipulate. Confused? Let’s dig in and demystify this a bit. Creating a URL from a string with vanilla JS To create a new URL object, pass the URL as a string into the new URL() constructor method. var url = new URL('https://gomakethings.com/about?num=42&greeting=hello#contact'); I’m using a comically complex example above so that you can see all of the cool stuff the URL API lets you do.
·gomakethings.com·
How to use the URL API with vanilla JS