Convert instantly between binary, decimal, hexadecimal, base64, and ASCII. https://fwdekker.com/tools/converter/
Go to file
Florine W. Dekker 86d32d66fb
Update dependencies, use local fonts
2021-03-26 03:52:07 +01:00
src/main Update dependencies, use local fonts 2021-03-26 03:52:07 +01:00
.editorconfig Add version number and best practices 2020-03-14 11:45:06 +01:00
.gitattributes Migrate to npm, use template package 2020-05-16 18:54:07 +02:00
.gitignore Migrate to npm, use template package 2020-05-16 18:54:07 +02:00
Gruntfile.js Migrate to npm, use template package 2020-05-16 18:54:07 +02:00
LICENSE Add LICENSE 2019-07-01 20:52:59 +02:00
README.md Migrate to npm, use template package 2020-05-16 18:54:07 +02:00
package-lock.json Update dependencies, use local fonts 2021-03-26 03:52:07 +01:00
package.json Update dependencies, use local fonts 2021-03-26 03:52:07 +01:00

README.md

Converter

An online tool to convert values between number systems. Quickly convert hexadecimal to binary or base64 to ASCII. Everything happens in the browser, so nothing is submitted to any server.

Development

Requirements

Setting up

# Install dependencies (only needed once)
$> npm ci

Building

# Build the tool in `dist/` for development
$> npm run dev
# Same as above, but automatically rerun it whenever files are changed
$> npm run dev:server
# Build the tool in `dist/` for deployment
$> npm run deploy