Most Essentials Tools For Programs [Must Knows]

The Web Developer’s Toolkit

  1. devdocs.io — API documentation for all popular programming languages and frameworks. Includes instant search and works offline too.

  2. glitch.com — create your own web apps in the browser, import GitHub repos, use any NPM package or build on any popular frameworks and directly deploy to Firebase.

  3. bundlephobia.com — quickly find the import cost (download size) of any package in the NPM registry. Or upload your package.json file to scan all dependencies in your project.

  4. babeljs.io/repl — Write your code in modern JavaScript and let Babel transform your code into JavaScript that is compatible with even older browsers.

  5. codeply.com — quickly build frontend responsive layouts with frameworks like Bootstrap, Materialize CSS and SemanticUI.

  6. httpie.org — a command-line tool that is useful for making HTTP requests to web servers and RESTful APIs. Almost as powerful as CURL and Wget but simpler.

  7. regexr.com — A good tool for testing your regular expressions in the browser.

  8. jex.im/regulex — Write any regular expression into the editor and get a visual representation of how the pieces work.

  9. buildregex.com — Construct regular expressions visually.

Also see: The Most Useful Websites on the Internet

  1. explainshell.com — Type any Unix command and get a visual explanation of each flag and argument in the command.

  2. tldr.ostera.io — Unix man pages are long and complex. This site offers practical examples for all popular Unix command without you having to dive into the man pages.

  3. mockaroo.com — quickly generate dummy test data in the browser in CSV, JSON, SQL and other export formats.

  4. jsdelivr.com — Serve any GitHub file or WordPress plugin through a CDN. Combine multiple files in a single URL, add “.min” to any JS/CSS file to get a minified version automatically. Also see unpkg.com.

  5. carbon.now.sh — create beautiful screenshots of your source code. Offers syntax highlighting for all popular languages.

  6. wakatime.com — know exactly how long you spend coding with detailed metrics per file and even language. Integrates with VS Code, Sublime text, and all popular code editors.

  7. astexplorer.net — paste your JavaScript code into the editor and generate the Abstract Syntax Tree that will help you understand how the JavaScript parser works.

  8. hyper.is — A better alternative to the command line terminal and also iTerm. Use with the Oh My Zsh shell and add superpowers to your terminal.

  9. curlbuilder.com — make your own CURL requests in the browser.

  10. htaccess.madewithlove.be — easily test the redirect and rewrite rules in the .htaccess file of your Apache server. See useful .htaccess snippets.

Also see: The Best Places to Download HTML Templates

  1. trackjs.com — monitor errors in your JavaScript based web projects and get instant email notifications when a new error is detected.

  2. ngrok.com — Start a local web server, fire up ngrok, point to the port where the localhost is running and get a public URL of your tunnel.

  3. codeshare.io — An online code editor for pair programming, live interviews with video conferences or for teaching code to students remotely.

  4. webhooks.site — Easily inspect the payloads and debug HTTP webhooks in the browser. All HTTP requests are logged in real-time. Another good alternative is RequestBin.

  5. surge.sh — the easiest way to deploy web pages and other static content from the command line. Supports custom domains and SSL. Also see Zeit Now.

  6. visbug — A must-have add-on for web developers that brings useful web design tools right in your browser. Available for Google Chrome and Firefox.

  7. puppeteersandbox.com — Puppeteer is a Node.js framework for automating Google Chrome. Use the sandbox to quickly test your scripts in the browser. Also see try-puppeteer.com.

  8. prettier.io/playground — Beautify your JavaScript and TypeScript code using Prettier, the favorite code formatter of programmers.

  9. json.parser.online.fr — The only JSON parser you’ll ever need to analyze and beautify your complex JSON strings.

  10. scrimba.com — Create your own programming screencasts in the browser or watch other developers code.code.

  11. katacoda.com — A training platform for software developers where anyone can create their own dedicated and interactive training environments.

  12. codesandbox.io — A full-featured online IDE where you can create web applications in all popular languages including vanilla JavaScript, React, TypeScript, Vue and Angular. Also see StackBlitz.com and Repl.it.

  13. apify.com — Write your own web scrapers using JavaScript and schedule your scrapers to run at specific intervals automatically.

  14. vim-adventures.com — The Vim text editor is hugely popular among programmers. The site will help you master the various key commands through a game.

  15. insomnia.rest — A desktop based REST client that lets you create HTTP requests and view response details all in a easy-to-use interface. Advanced users may consider Postman.

31 Likes

I like it, but the only thing is that probably 40% of the links are paid

1 Like

Yaml Lint also nice to add in the list.
YAML Lint

Thanks for this. Bookmarked and thumb’ed up.