When testing many facets of the OptinMonster embed code I find myself needing a clean & quick HTML page on almost a daily basis. For most tasks throwing some code into JSFiddle will do, but testing some of our more advanced targeting rules becomes onerous, if not impossible.
In comes a great little NPM package serve from the team over at Zeit that gives you a bare-bones web server from the terminal.
So without further ado, my process:
> npm i -g serve
I first create a new temporary directory and add an index.html file.
> mkdir om-test && cd om-test
> touch index.html
I then place some boilerplate HTML in index.html along with the OptinMonster embed code.
<html>
<head>
<title>OptinMonster Test</title>
</head>
<body>
<h1>I'm OptinMonster Testing Rick!</h1>
<!-- OptinMonster embed code goes here -->
</body>
</html>
Back in the terminal and in the temporary directory, start the server with server ..
Once you see “Serving!” your page is ready to go!
You can now see the test page at http://localhost:5000.
That’s it.