I recently tried to add a new utility to my Angular 2 application using the command npm install utilite
. However, I encountered an error when attempting to import the utility in my app.module.ts
file, like so:
import { Utilite } from "utilite/utilite";
I received an error stating that the module could not be found. Can someone please advise on the correct way to import modules from the node_modules directory?