This is a partial port of @tourdedave's The Internet. This is written in NodeJS/ExpressJS whereas the original work is in Ruby/Sinatra.
We develop and maintain Taiko, and in order to showcase the features and write some examples, The-internet was perfect. However, since the tech stack differ, we had to rely on a bunch of pre-requisites that weren't needed for Taiko scripts, in order to bring up The Internet.
As mentioned above, the purpose of this project is very specific, to illustrate use cases of Taiko. Hence, this project brings in only those parts of The Internet which are relevant for this cause. For instance, examples of cross-browser testing are out of scope.
npm install
npm serve
- visit
http://localhost:3000
var app = require('the-internet-express');
var server = app.listen(3000, () => {
// do as you please with the-internet-express at localhost:3000
server.close();
});
Contributions are welcome. Feel free to send pull requests.
MIT - the same as The Internet