I want to use libquassel (https://github.com/magne4000/node-libquassel) in my Angular 2 project. The library is browserified, so in theory it should work, but I'm not really sure how to import it in my project.
I tried adding to my typings.d.ts
declare module 'libquassel';
and then importing the library with
import * as Quassel from 'libquassel';
but I get
EXCEPTION: net.Socket is not a function
when I try to run my code, which I believe is another library that browserify embedded in the client/libquassel.js
file.
How can I use this library?
Edit: I'll answer all questions here:
ng new proj1
and then npm install libquassel --save
.index.html
doesn't have anything else that ng new
hasn't placed in there.import * as Quassel from 'libquassel'
and var Quassel = require('quassel')
(and permutations of those), without any luck (errors varying from unknown function 'require'
to can't find module lib|quassel
).Steps to repro my project:
ng new test
cd test
npm install libquassel --save
ng g s quassel
Then add QuasselService
to the providers
array in app.module.ts
.
This would be a good demo of my problem, which is how to import libquassel
in my QuasselService
.
Update (fix it, this time for real)
There is a very good reason why it doesn't work in your code: because I lied to you. So here is my real cheat in case you didn't "diffed" it yourself yet.
I still need to require
libquassel 2 times but the first time is done not by the call to require
which is useless but by adding it to angular-cli.json
to the scripts
section:
"scripts": [
"../node_modules/libquassel/client/libquassel.js"
],
This is important because "client/libquassel.js" declares its own require
but do not explicitly exports it so if you do
require('libquassel/client/libquassel.js');
libquassel's custom require
is left stuck inside anonymous namespace and you can't access it. Adding it to the scripts
section on the other hand, lets libquassel.js to pollute the global namespace (i.e. window
) with its require
and thus make it work.
So the actual steps to make it work are:
section
of angular-cli.json
require
to actually load Quassel
modulelet Quassel = window['require']('quassel'); // note that usingg require('quassel') leads to compilation error
let quasselObj = new Quassel(...);
Here is my attempt. It looks like you need to require
"quassel" 2 times: first time to load the JS from "../node_modules/libquassel/client/libquassel.js" and second time to let the overridden require
from that JS actually resolve "quassel". Here is a trick that seems to work for me in 'main.ts':
require('../node_modules/libquassel/client/libquassel.js');
let Quassel = window['require']('quassel'); // note that using require('quassel') leads to compilation error
let quasselObj = new Quassel(...);
I needed one more trick to not fail with a compilation error: particularly I had to use window['require']
instead of just require
for the second call as it is a call for the inner require
as defined inside client/libquassel.js
and Node/Angular-cli alone can't handle it.
Note that after that setup my application still failed with a runtime error in some AJAX because browsified libquassel.js
seem to require a proxy set up on the server-side at URL like /api/vm/net/connect
and this is probably what server-side of the net-browsify should do but I didn't try to set it up.
Answer to comments
It looks like you use old version of Angular-CLI and if you upgrade everything should work fine.
Here is what ng --version
tells me on my original machine
angular-cli: 1.0.0-beta.28.3
node: 6.10.0
os: win32 x64
@angular/common: 2.4.10
@angular/compiler: 2.4.10
@angular/core: 2.4.10
@angular/forms: 2.4.10
@angular/http: 2.4.10
@angular/platform-browser: 2.4.10
@angular/platform-browser-dynamic: 2.4.10
@angular/router: 3.4.10
@angular/compiler-cli: 2.4.10
When I tried to copy my original project to a different machine I also got a compilation error about require
but when I updated Angular-CLI to
@angular/cli: 1.0.0
node: 6.10.0
os: darwin x64
@angular/common: 2.4.10
@angular/compiler: 2.4.10
@angular/core: 2.4.10
@angular/forms: 2.4.10
@angular/http: 2.4.10
@angular/platform-browser: 2.4.10
@angular/platform-browser-dynamic: 2.4.10
@angular/router: 3.4.10
@angular/cli: 1.0.0
@angular/compiler-cli: 2.4.10
it compiled and worked the same. What I did is just followed the instruction
The package "angular-cli" has been deprecated and renamed to "@angular/cli".
Please take the following steps to avoid issues:
"npm uninstall --save-dev angular-cli"
"npm install --save-dev @angular/cli@latest"
and then updated angular-cli.json
following the instructions by ng serve
Works like a charm :
declare var require;
const Quassel = require( 'libquassel/lib/libquassel.js' );
console.log( 'Quassel', Quassel );
Looking at the libquassel
's folder in node_module, realised that there is no index.js
in the root directory.
When there is not index.js
, you can't do this :
require( 'libquassel' );
Simply because node doesn't know what to pull in for you, so you'd need to specify the exact path, which is not that bad in this case.
Also , note that it's better to move declare var require;
to your typings file located under the src folder, because you might need to declare it again , so it's better be there.
EDIT : Here is what I found after trying to instantiate the Quassel like bellow :
const Quassel = require( 'libquassel/lib/libquassel.js' );
console.log( 'Quassel', Quassel );
var quassel = new Quassel( "quassel.domain.tld",
4242,
{ backloglimit : 10 },
function ( next ) {
next( "user", "password" );
} );
console.log( 'quassel', quassel );
And here is my console log :
But having said that, I realised that there is a problem inside the libquassel.js , as bellow :
in line 10, they're doing this :
var net = require('net');
And looking their package.json, there is no such a thing as net
and there is net-browserify-alt
;
So if they change that import to :
var net = require('net-browserify-alt'),
Everything will work.
Having said that, obviously you don't want to edit your node_module, but I'm really surprised of how this really works even outside of angular and webpack , because clearly they've mentioned a wrong node_module which if you google , there is only one package named net
which I had a look and it's empty and dummy !!!!
** ********** UPDATE : ********** **
What exactly needs to be done :
1- run ng eject
that will generate a webpack.conf.js
inside your root directory.
2- inside that find resolve
property and add :
"alias":{
'net':'net-browserify-alt'
},
so your resolve will probably look like :
"resolve": {
"extensions": [
".ts",
".js"
],
"alias":{
'net':'net-browserify-alt'
},
"modules": [
"./node_modules"
]
},
3- import and use it :
declare var require;
const Quassel = require( 'libquassel/lib/libquassel.js' );
console.log( 'Quassel', Quassel );
var quassel = new Quassel( "quassel.domain.tld",
4242,
{ backloglimit : 10 },
function ( next ) {
next( "user", "password" );
} );
console.log( 'quassel', quassel );
NOTE :
Having a look at webpack configuration, seems like webpack likes to override couple of modules :
"node": {
"fs": "empty",
"global": true,
"crypto": "empty",
"tls": "empty",
"net": "empty",
"process": true,
"module": false,
"clearImmediate": false,
"setImmediate": false
}
I don't exactly know why, but this list is in the webpack config and seems to be making net
to be undefiend ( empty ) and that's why we had to create an alias.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With