Go to https://lightsail.aws.amazon.com/ls/webapp/home/instances
Click “Create instance” button on top right corner
Create Instance:
Instance Location: us-east-1a
Platform: Linux/Unix
Blueprint: Apps + OS –> Node.js
Instance Plan: select least expensive
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by oded on 12/25/16. | |
*/ | |
export class IPCounter { | |
static count() { | |
let converted: string = ''; | |
let ranges = IPCounter.source().split('\n'); | |
ranges.forEach((range) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"short_name": "PWA", | |
"name": "PWA tester", | |
"description": "Test PWA manifest", | |
"icons": [ | |
{ | |
"src": "https://dummyimage.com/72x72/000/fff&text=72", | |
"type": "image/png", | |
"sizes": "72x72" | |
}, |
OlderNewer