Aubrée Anthony
Quagliatini Jordan
Chariot Jordan
Duby Thibaut
language: nom du langage install: - dépendances - commandes système
language: node_js node_js: - "0.10"
var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello World\n'); }).listen(1337, '127.0.0.1'); console.log('toto');
{ "name": "travis_test", "version": "0.1.0", "devDependencies": { "grunt": "0.4.1", "grunt-cli": "0.1.9", "grunt-contrib-jshint": "0.6.4" }, "scripts": { "test": "grunt --verbose" } }
module.exports = function(grunt) { grunt.initConfig({ jshint: { all: ['Gruntfile.js', 'Hello.js'] } }); grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.registerTask('default', 'jshint'); };
language: node_js node_js: - "0.10"
$ git push