mirror of
				https://github.com/twbs/bootstrap.git
				synced 2025-11-04 00:03:15 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			332 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			332 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/*
 | 
						|
 * Simple connect server for phantom.js
 | 
						|
 * Adapted from Modernizr
 | 
						|
 */
 | 
						|
 | 
						|
var connect = require('connect')
 | 
						|
  , http = require('http')
 | 
						|
  , fs   = require('fs')
 | 
						|
  , app = connect()
 | 
						|
      .use(connect.static(__dirname + '/../../'));
 | 
						|
 | 
						|
http.createServer(app).listen(3000);
 | 
						|
 | 
						|
fs.writeFileSync(__dirname + '/pid.txt', process.pid, 'utf-8')
 |