1
0
Fork 0
forked from svrjs/svrjs
This repository has been archived on 2024-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
svrjs/lib/hexstrbase64
2023-07-29 20:32:17 +02:00
..
hexstrbase64 Initial commit 2023-07-29 20:32:17 +02:00
test Initial commit 2023-07-29 20:32:17 +02:00
fail.png Initial commit 2023-07-29 20:32:17 +02:00
index.js Initial commit 2023-07-29 20:32:17 +02:00
ok.png Initial commit 2023-07-29 20:32:17 +02:00
readme.css Initial commit 2023-07-29 20:32:17 +02:00
readme.html Initial commit 2023-07-29 20:32:17 +02:00

<!DOCTYPE html>
<html>
  <head>
    <title>HexStrBase64 Readme</title>
    <link rel="stylesheet" href="readme.css">
  </head>
  <body>
    <h1>hexstrbase64</h1>
    <h2>How to install?</h2>
    <h3>Node.js</h3>
    <ol>
      <li>Download library from <a href="https://repl.it/@DorianNiemiec/Hex-String-Base64-NodeJS-Library.zip" download>here</a>.</li>
      <li>Modify index.js</li>
      <li>Write header in program (replace <b>./hexstrbase64</b> with your path to hexstrbase64 library):</li>
      <div class="code">
        var hexstrbase64 = require("<b>./hexstrbase64</b>/index.js");<br/>
      </div>
      <li>Now hexstrbase64 library added to program!</li>
    </ol>
    <h3>Browser Javascript</h3>
    <ol>
      <li>Download library from <a href="https://repl.it/@DorianNiemiec/Hex-String-Base64-NodeJS-Library.zip" download>here</a>.</li>
      <li>Write this code in &lt;head&gt; element (replace <b>hexstrbase64/</b> with your path to hexstrbase64 library):</li>
      <div class="code">
        &lt;script src="<b>hexstrbase64/</b>hexstrbase64/base64_browser.js"&gt;&lt;/script&gt;<br/>
        &lt;script src="<b>hexstrbase64/</b>hexstrbase64/main_browser.js"&gt;&lt;/script&gt;
      </div>
      <li>Now hexstrbase64 library added to HTML!</li>
    </ol>
  </body>
</html>