I am currently trying to import and use nanoid in my (Firebase) nodejs project. I installed it with
npm i nanoid
and I tried to import it with
import { nanoid } from 'nanoid'
and
import { nanoid } from '../node_modules/nanoid/nanoid.js'
Everything I tried failed. I am a complete beginner with nodejs and js itself, but no Website or Documentation helped me fixing the problem. I just want an unique id :(
heres my index.html (reduced to minimum:
<!DOCTYPE html>
<html>
<head>
<title>Welcome to Firebase Hosting</title>
!!!Here are Firebase imports!!!
<script defer src="/__/firebase/init.js?useEmulator=true"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="registerContainer">
<div class="registerContent">
<h1 id="title">Sign up</h1>
<iframe name="hiddenFrame" width="0" height="0" border="0" style="display: none;"></iframe>
<form id="form" onsubmit="return false">
<!-- Birth date Input (required) -->
<div class="input_field">
<input id="date" onfocus="(this.type = 'date')" class="text_input" type="text" name="birthdate" placeholder="Geburtsdatum" required />
</div>
<!-- Checkbox 1 -->
<div class="input_field checkbox_option">
<input type="checkbox" id="cb1" class="checkbox">
<label for="cb1">I agree with terms and conditions</label>
</div>
<input class="button" id="registerUser" type="submit" value="Anmelden"/>
</form>
</div>
</div>
<script src="app.js"></script>
</body>
</html>
app.js:
const nanoid = require('nanoid');
document.addEventListener('DOMContentLoaded', event => {
const app = firebase.app();
const db = firebase.firestore();
const users = db.collection('users');
})
async function addUser() {
console.log('adding User');
const db = firebase.firestore();
const users = db.collection('users');
const data = {
email: document.getElementById("email").value,
test_active: false
};
code = nanoid(10).toString();
await users.doc(code).set(data);
}
Based on your existing comments it appears that you're running this code in the browser and you also don't have browserify or any other bundler in your project.
That conclusion came from the fact that you commented that you got the error
require
is a function specific to server side NodeJS projects and doesn't exist in the browser. If you want to use the require function you need to use a bundler like browserify or webpack that will fetch the relevant packages from your node_modules folder and bundle them together for your front-end to use.The reason you're getting the
error is because when you ask javascript to run the following:
what the browser thinks is that the directory containing the current page also has a file called
nanoid
and is making a request for that file.Consider the following: If my page is at https://google.com and my code says
import {nanoid} from 'nanoid'
the browser is going to make a request tohttps://google.com/nanoid
and the browser is expecting a javascript file but it's likely receiving an error 404 html page.Remember, the browser does not have access to your
node_modules
folder unless it's publicly exposed on your webserver and in that situation you need to tell it the exact path to the file you're trying to import.What can you do?
You can add webpack or browserify or some other bundler to your project but that might require a bit of work and you mentioned you're a beginner so I don't think it'd be a good idea to jump right in.
The other option might be to add the browser version of the nanoid code directly into your own project.
I've taken the browser version of the code from the github https://github.com/ai/nanoid/blob/main/index.browser.js and put it into a script tag (getting rid of the urlAlphabet import) below that you can add to your code. Keep in mind this code will add the
nanoid
,customAlphabet
,customRandom
,urlAlphabet
, andrandom
variables globally so make sure there aren't any collisions with your global variables.