17 private links
No JavaScript frameworks were created during the writing of this article.
The following is inspired by the article “It’s the future” from Circle CI. You can read the original here. This piece is just an opinion, and like any JavaScript framework, it shouldn’t be taken too seriously.
The ecosystem of JavaScript has grown. Long gone are the days of simply inserting jQuery into your website and fading stuff in or out.
Entering the world of JavaScript today is an overwhelming task with lots of possibilities. It also means that it’s a world that’s brimming with opportunity. In the words of Jeff Atwood (http://blog.codinghorror.com/the-principle-of-least-power/):
Any application that can be written in JavaScript, will eventually be written in JavaScript.
On entend beaucoup parler de liberté d’expression ces derniers temps. Que ce soit quand Dieudonné veut nous apitoyer sur son sort de pauvre antisémite martyrisé, ou plus récemment avec le massacre de Charlie Hebdo. Nous allons donc réfléchir un peu au...
Twitter-like Mastodon client
Première mission pour Mars. Des humains vont poser le pied sur la planète rouge. Entre leurs désirs, leurs rêves, leurs illusions, il y a cette envie désespérée, mêlée de terreur, de faire la rencontre d'une autre forme de vie... Et que se passerait-il à ce moment-là pour eux? Et sur terre?
Development boards and Tools. OLinuXino, Duino, ARM, AVR, MAXQ, MSP430, PIC, DSP
OLIMEX Open Source Hardware Development Boards
Dictionary words that are also unregistered domain names, every 10 minutes. Source: https://github.com/impiaaa/domainhackerbot
Tone Bender 1.5 #2 with bias control. Turret board circuit construction sporting Mullard OC72 and OC42 germanium transistors. ...
Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise.
I won a Samsung Galaxy S6 Edge, signed into it with my Google account, played around with it, wiped it, and sold it. Now the person can't get past setup because it's saying he must login with an a...
Upgrade from 0.6.5
to 0.8.4
(ArchLinux AUR version).
As others have recommended in comments, it looks like the canonical way to test Express controllers is through supertest.
An example test might look like this:
describe('GET /users', function(){
it('respond with json', function(done){
request(app)
.get('/users')
.set('Accept', 'application/json')
.expect(200)
.end(function(err, res){
if (err) return done(err);
done()
});
})
});
Upside: you can test your entire stack in one go.
Downside: it feels and acts a bit like integration testing.
A Test-Anything-Protocol library for Node.js