npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

code-snippets

v0.9.1

Published

Chrome DevTools code snippets

Downloads

42

Readme

Chrome DevTools code snippets

Performance, debugging and testing code snippets to be run in Chrome DevTools

NPM

Build status dependencies devdependencies Codacy Badge semantic-release

fist paint

Read Code Snippets tutorial, Performance profiling using DevTools code snippets and How to improve Angular application performance using code snippets.

Note: code snippets do NOT have access to the full console API, for example no access to console.monitor.

Snippets

Security

DOM and CPU generic performance

Storage measurements

Angular performance

  • ng-count-watchers.js - counts total watchers in the page. More watchers - slower digest cycle.
  • ng-idle-apply-timing.js - measures how long a digest cycle takes without any data changes. This measures purely how long all watched expressions take to compute and compare to previous values (dirty checking).
  • ng-profile-scope-method.js - installs profile calls around a given scope method. When the method completes, the original non-instrumented version will be restored. The browser will have timeline and CPU profile.
  • ng-run-digest-cycle.js - triggers digest cycle starting with root scope.
  • ng-profile-data-change.js - changes data on the scope, runs digest cycle to profile listeners.
  • ng-scope-size.js - finds total size of all user objects attached to all scopes. Smaller data - faster copying and comparison during digest cycle.
  • ng-find-scope-property.js - finds all scopes that own a property with given name.
  • ng-profile-local-digest.js - runs idle digest cycle starting at the scope that surrounds given selector. Useful to find parts of the page with expensive watchers.
  • ng-find-expensive-digest.js builds upon ng-profile-local-digest.js to measure digest duration for several selectors and print sorted table starting with the slowest digest duration.
  • ng-monitor-digest-cycle.js - prints a string every time a digest cycle runs.
  • ng-count-digest-cycles.js - counts number of full digest cycles (from the root scope) that run when a scope method executes. Useful because sometimes you can get away with just a local digest cycle, rather than a full update. See Local Angular scopes.
  • ng-count-digest-cycle-simple.js - keeps counting number of times the digest cycle runs.
  • ng-throw-error.js throws an error from the digest cycle; useful for checking if your exception handler is working.

Misc snippets

All snippets, including mine are distributed under MIT license.

Updating local code snippets

You can update local code snippets by downloading new versions from this github repository. Create a new code snippet and copy the source from update-code-snippets.js.

Note: the approach below does not work any more, see the open issue.

You will run this code snippet in an unusual way. First, open any web page, even an empty tab. Open the DevTools in undocked mode (Command+Option+I on Mac). Then open the DevTools again, while focused on the first DevTools. This will open the second DevTools instance with the source for the first DevTools panels. If you inspect the localStorage variable in the second DevTools window, you will find lots of interesting stuff, including all the code snippets in the localStorage.scriptSnippets property.

Whenever you want to update the your local code snippets in the Chrome DevTools, execute the update-code-snippets.js snippet in the second DevTools instance. The update script looks at the your current code snippets and tries to download a file with same name from the code snippets github repository (via RawGit). If the remote file has been downloaded successfully, it will replace the snippet. After all snippets are checked, reopen the DevTools to load the updated source code.

update code snippets

Note, that only the latest source is downloaded, not any particular release. Also, only code snippets with names matching existing files in this repo are replaced. If you do not want to override a code snippet - just rename it, for example, remove the .js extension.

Remote download a single script

You can download and run a single snippet by using the following boilerplate (scripts are via downloaded via RawGit)

(function firstPaintRemote() {
  // form rawGit proxy url
  var ghUrl = 'bahmutov/code-snippets/master/first-paint.js';
  var rawUrl = 'https://rawgit.com/' + ghUrl;
  // download and run the script
  var head = document.getElementsByTagName('head')[0];
  var script = document.createElement('script');
  script.type = 'text/javascript';
  script.src = rawUrl;
  head.appendChild(script);
}());

remote

Small print

Author: Gleb Bahmutov © 2014

License: MIT - do anything with the code, but don't blame me if it does not work.

Spread the word: tweet, star on github, etc.

Support: if you find any problems with this module, email / tweet / open issue on Github