cabbie-sync
Version:
A synchronous webdriver client
13 lines (11 loc) • 336 B
Flow
/**
* @flow
* This file is generated automatically, run npm run build to re-generate.
**/
import { connect } from 'net';
const connection = connect(9517, 'localhost');
connection.on('error', err => {
console.error('Taxi rank may have crashed.');
console.error(err.stack || err.message || err);
});
connection.pipe(process.stderr);