Skip to content

DFabric/browser-tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

browser-tools

In-browser, offline standalone, statically servable web tool set. demo

A collection of web tools from number of different projects

Projects used (a big thanks to them)

Download/Update browser-tools

To clone the repository and its subrepositories recursively:

git clone --recursive https://github.com/DFabric/browser-tools

To update from the upstream repository and its subprojects:

git pull && git submodule update --remote --force

Use this site locally/offline with an HTTP server

You can download the site's content and use it directly by launching index.html on you browser. However browsers often block some local contents; the apps will not fully work if this protection isn't disabled or if the site isn't served with a local server.

Therefore, you should need to set up a local http server:

Caddy

You can use Caddy. (download here)

Put the caddy binary file to the root of the site, and launch it:

./caddy

Your site is now available at localhost:2015

http-server

You can also use the http-server module from npm if you have Node.js installed

Run at the root of the site:

npm install http-server

Then run it:

./node_modules/.bin/http-server

Your site is now available at localhost:8080

Python http server

You can use the buit-in http extension of Python. Run one of this following commands depending of your Python's version at the site's root.

If you have python 3 installed:

python3 -m http.server

If you have python 2 installed:

python2 -m SimpleHTTPServer

Your site is now available at localhost:8000

License

browser-tools

Copyright (c) 2016-2017 Julien Reichardt - MIT License (MIT)