Convert instantly between binary, decimal, hexadecimal, base64, and ASCII. https://fwdekker.com/tools/converter/
Go to file
Florine W. Dekker 930cdb278b
Prevent textarea overflow
2022-11-24 14:12:46 +01:00
src/main Prevent textarea overflow 2022-11-24 14:12:46 +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 Use flex-based layout to reduce visual waste 2022-11-23 13:47:48 +01:00
LICENSE Update repository URL 2022-02-28 17:03:38 +01:00
README.md Migrate to npm, use template package 2020-05-16 18:54:07 +02:00
package-lock.json Use flex-based layout to reduce visual waste 2022-11-23 13:47:48 +01:00
package.json Prevent textarea overflow 2022-11-24 14:12:46 +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