I've been working on a NodeJS login/register script (called LoginRegister.js) that seemed to work fine in the terminal. I've also installed NodeJS, and the bcrypt module for it. Here's the file:
// Initialization
var fs = require("fs");
var bcrypt = require("bcrypt");
var LUinputID = $("#LUsernameIn").value;
var LPinputID = $("#LPasswordIn").value;
var RUinputID = $("#RUsernameIn").value;
var RPinputID = $("#RPasswordIn").value;
var UserStorageTextFile = "Users.txt";
$(document).ready(function(){
    console.log("Hello");
    var RButton = $("rBTN").addEventListener("click", registerUser(UserStorageTextFile, RUinputID, RPinputID));
    var LButton = $("#lBTN").addEventListener("click", registerUser(UserStorageTextFile, LUinputID, LPinputID));
});
// Defining Functions
function encrypt(passwordFromUser) {
    var salt = bcrypt.genSaltSync(10);
    var hash = bcrypt.hashSync(passwordFromUser, salt);
    return hash;
}
function passCheck(passwordFromUser, passHashed){
    return bcrypt.compareSync(passwordFromUser,passHashed);
}
function loginUser(usersTextFile, username, password){
    data = fs.readFileSync(usersTextFile).toString();
    if(data.indexOf(username) != -1){
        console.log(data.indexOf(username));
        for (var i = 0; i <= data.indexOf(username); i++) {
            if (i == data.indexOf(username)) {
                i += (username.length + 1);
                passcode = data.slice(i, i+60);
                if (passCheck(password, passcode)) {
                    console.log("Yes!!");
                }
                else{
                    console.log("No!!");
                }
            }
        }
    }
    else{
        console.log("No!!");
    }
}
function registerUser(usersTextFile, username, password) {
    data = fs.readFileSync(usersTextFile);
    saveData = data + username + "-" + encrypt(password) + "\n";
    fs.writeFile('Users.txt', saveData, (err2) => {
        console.log("User " + username + " Registered!");
    });
}
I wanted to test it in a browser, so I put together an html file to display my JS one in action:
<!DOCTYPE html>
<html>
<head>
    <title>Authentication Test</title>
    <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
    <script type="text/javascript" src="LoginRegister.js"></script>
</head>
<h2>Login</h2>
<input type="text" id="RUsernameIn">
<input type="password" id="RPasswordIn">
<button id="lBTN">Login</button>
<h2>Register</h2>
<input type="text" id="LUsernameIn">
<input type="password" id="LPasswordIn">
<button id="rBTN">Register</button>
</html>
I opened up the HTML file in Microsoft Edge and tried pressing the register button after putting in details into the boxes, but I checked the Users.txt file and nothing had happened. After looking at the F12 Developer Tools, I noticed that on startup, the console stated:
SCRIPT5009: 'require' is undefined
LoginRegister.js (2,1)
 
    