https://github.com/mysqljs/mysql #obtenir-l-identifiant-d-une-ligne-insérée décrit parfaitement la solution :
connection.query('INSERT INTO posts SET ?', {title: 'test'}, function(err, result, fields) {
if (err) throw err;
console.log(result.insertId);
});