Currently facing an issue while trying to incorporate a module called "request" into my Angular 2 Typescript project from here.
Despite following the usual installation process with npm install --save request and also attempting typings install request --ambient --save, I'm still encountering difficulties getting it imported.
I am utilizing this boilerplate here, which suggests that installing modules is straightforward by using npm install followed by
import * as jwt from 'angular2-jwt/angular2-jwt';
However, importing the request module seems to be presenting challenges for some reason.
The line of code for my import appears as follows:
import * as request from 'request';
Could there be a need to reference the module elsewhere in a different manner?