mirror of
				https://github.com/therootcompany/acme.js
				synced 2025-11-03 22:52:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			432 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			432 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env node
 | 
						|
'use strict';
 | 
						|
 | 
						|
// BG WH \u001b[47m
 | 
						|
// BOLD  \u001b[1m
 | 
						|
// RED   \u001b[31m
 | 
						|
// GREEN \u001b[32m
 | 
						|
// RESET \u001b[0m
 | 
						|
 | 
						|
setTimeout(function() {
 | 
						|
    [
 | 
						|
			'',
 | 
						|
			'\u001b[31mGreenlock and ACME.js v3 are on the way!\u001b[0m',
 | 
						|
			'Watch for updates at https://indiegogo.com/at/greenlock',
 | 
						|
			''
 | 
						|
		]
 | 
						|
		.forEach(function(line) {
 | 
						|
			console.info(line);
 | 
						|
		});
 | 
						|
}, 300);
 | 
						|
 | 
						|
setTimeout(function() {
 | 
						|
	// give time to read
 | 
						|
}, 1500);
 |