Faking Mouse Events in D3
D3 is a great library but one of the challenges I have found is with unit testing anything based on event handlers. In my specific example I was trying to show a tooltip when the user hovered over an...
View ArticleProxyApi & Anti-Forgery Tokens
Anti-Forgery Tokens? Good question. Anti-forgery tokens are a recommended way of preventing one of the OWASP Top Ten security vulnerabilities: Cross Site Request Forgery, or CSRF. CSRF works on the...
View ArticleHandling ‘this’ in ko.command
Update: this feature is now available as part of the ko.plus library available on GitHub and NuGet! The problem of context – the this value – in JavaScript is one that seems to keep causing problems....
View ArticleCreating NuGet packages with Grunt
Grunt is a JavaScript task runner that can be used to automate (among other things) the various tasks around building and deploying JavaScript: concatenation, minification, JSHint, QUnit. etc. etc....
View ArticleProtecting your CouchDB Views
If you work with a SQL or other RDBMS database you most likely have your schema backed up somewhere under source control. Maybe it’s a bunch of SQL scripts, maybe it’s the classes from which you...
View Article3 Ways to Deal with SFOUC in KnockoutJS
What is SFOUC? A Sudden Flash Of Unstyled Content, or SFOUC, refers to that irritating few milliseconds between when your web page loads and when all of your dynamic content pops into place. The reason...
View ArticleCustom Operation Names with Swashbuckle 5.0
This is a post about Swashbuckle – a .NET library that seamlessly adds Swagger support to WebAPI projects. If you aren’t familiar with Swashbuckle then stop reading right now and go look into it –...
View ArticleSupporting SignalR Client Handlers after Connection Start
(Yes, that is a pretty specific post title but then this is a pretty specific problem…) In general, when you create a new SignalR connection you are obliged to have already defined any of your handlers...
View ArticleCleaning up Resources using MutationObserver
Cleaning up resources? Let’s say you’ve written a shiny new component in your favorite framework and somewhere along the way you’ve allocated a resource that cannot be automatically cleaned up by the...
View ArticleFinding Freedom in “JavaScript Fatigue”
A lot of people have spoken about “JavaScript fatigue”: the idea that there are so many new frameworks, tools and ideas available to the average JavaScript developer that it’s impossible to keep up. I...
View Article