utils

Utils is a folder to store all of your functions you want to use globally in the project. The folder is not mandatory and can be deleted.

Because we are using ES6 from NodeJS v13+, if you want to import a function from a utils file, make sure to add the .js when importing. Example: import { testFunction } from "../utils/test.js"

Last updated