morgan icon indicating copy to clipboard operation
morgan copied to clipboard

Deprecation warning when using import

Open rigwild opened this issue 6 years ago • 32 comments

When using import with esm using morgan, I get the following warning message :

morgan deprecated default format: use combined format node_modules\esm\esm.js:1:277757

This does not occur when using require. Example : https://repl.it/repls/SeagreenGrippingHexagon

On Morgan v1.9.1.

rigwild avatar Apr 11 '19 12:04 rigwild

Thanks for the report. This should only display if you're trying to get the deprecated morgan.default property, though. I'll need to dig in to see what is going on.

dougwilson avatar Apr 11 '19 13:04 dougwilson

import loads default by default. This default property needs to be renamed. There's probably a workaround for this but I can't help.

rigwild avatar Apr 11 '19 13:04 rigwild

So it will be renamed eventually, which is why it is deprecated.

dougwilson avatar Apr 11 '19 13:04 dougwilson

Same problem here. Is there anyway to get rid of the distracting 'deprecated' warning without forking and changing the source code?

dhowe avatar May 13 '19 02:05 dhowe

I haven't yet investigated what changes can be made to this module to fix the deprecation warning for the import syntax, but the warnings can always be suppressed from printing, though node command line switch, event listener, environment variable. You can read more here about how the deprecation system works if that helps at all for the time being: https://www.npmjs.com/package/depd

dougwilson avatar May 13 '19 03:05 dougwilson

perhaps remove the deprecation warning until you have time to investigate further?

dhowe avatar May 13 '19 03:05 dhowe

The deprecation warning was added almost 5 years ago and there was no issue until this issue. Perhaps if this issue was opened closer to when it was added reverting would be considered, but whatever has changed since then isn't this module.

dougwilson avatar May 13 '19 03:05 dougwilson

My guess is that people are simply using the 'import' style more now. The fix is just a comment (see this PR), but of course its your call...

dhowe avatar May 13 '19 03:05 dhowe

Here is a fix that leaves the deprecation message in place: #207

Note that module.exports.default is still pointing to the default format function. I'm not sure if that might confuse any other tools that parse ES6 exports, but this at least prevents the deprecation warning from being erroneously shown when using esm.

mbrowne avatar Jul 19 '19 15:07 mbrowne

Quick fix is to pass "tiny" instead of dev to morgan.

josemvcerqueira avatar Jul 24 '19 13:07 josemvcerqueira

@dougwilson I tried updating my app to use native ES modules now that they have landed in node (since node 13.2.0), but ran into some issues, so need to stick with esm for now. (It seems it will be a while before the ecosystem catches up with native ES modules to make adopting them a little more seamless.) So if you were to release a new major version of morgan that drops the deprecated default format (as you previously mentioned as a possibility), that would still be very helpful in the meantime.

mbrowne avatar Dec 13 '19 16:12 mbrowne

This will do the trick import * as morgan from 'morgan'

laurlas avatar Apr 01 '20 08:04 laurlas

To be clear, this issue is specific to using the esm package and not the import syntax in general.

Testing this with a basic import of import morgan from 'morgan' in node 12 or 13 does not produce the deprecation notice.

ryhinchey avatar Apr 10 '20 01:04 ryhinchey

This will do the trick import * as morgan from 'morgan'

I was hopeful, but turns out this doesn't work 😕

chriscalo avatar Apr 11 '20 23:04 chriscalo

I did some additional research today with the esm module and it looks like the issue is only with the import * syntax, using import morgan from 'morgan' not only did not produce the warning for me, but looking at the import syntax, that seems like the correct method to important this module. Can anyone who is using esm confirm this?

dougwilson avatar Apr 12 '20 07:04 dougwilson

This is enough to cause the warning for me:

test.js:

import morgan from 'morgan'
node -r esm test.js

As discussed here, the issue is that morgan has an export called default that isn't actually the default export.

mbrowne avatar Apr 12 '20 11:04 mbrowne

same problem still!

ahmetbcakici avatar Jul 30 '20 12:07 ahmetbcakici

same problem yeah

danieldare avatar Aug 07 '20 10:08 danieldare

same problem so far..

n2ptune avatar Oct 15 '20 13:10 n2ptune

Same thing...

hectorbus avatar Oct 30 '20 16:10 hectorbus

I got this problem. any solutions ?

applemate avatar Nov 03 '20 11:11 applemate

@craigcosmo It was solved by changing the import statement to require.

n2ptune avatar Nov 04 '20 05:11 n2ptune

yeah I tried that, and its fixed

applemate avatar Nov 04 '20 05:11 applemate

Hey guys!

When you call morgan just try to do this:

app.use(morgan("dev"));

It worked for me, the "dev" is cause i use "npm run dev" (you can change it on package.json, instead of using "start", to start the server, hope i could be helpfull :D

RMERCADOR98 avatar Jan 12 '21 00:01 RMERCADOR98

@RMERCADOR98 All that does is change to the formatting option named dev described in the readme, which is intended for development (so overly verbose and not ideal for production).

mbrowne avatar Jan 17 '21 17:01 mbrowne

In other news, I am using Koa instead of Express in my latest server, so I used koa-morgan, so I'm not getting the warning anymore because the import is now indirect.

Obviously this won't help those who want to use Express or httpServer and so are using morgan directly - for that, the best workaround is still to just use require instead of import, until if/when the next version of morgan is eventually released.

mbrowne avatar Jan 17 '21 17:01 mbrowne

@mbrowne I can confirm that this prevents the deprecation warning:

const morgan = require('morgan');

... but in typescript, it seems I now lose type information on the file.

The following works, but only if tsconfig has compilerOptions.module = "CommonJS" rather than any of the 'ES...' module options (e.g. es6).

import morgan = require('morgan');

techieshark avatar Jan 18 '21 10:01 techieshark

@dougwilson Every new comment is repeating what has been said before. Maybe you should lock the conversation until resolved.

rigwild avatar Jan 18 '21 11:01 rigwild

app.use(morgan("dev")); this does solve in my case

daniyaniazi avatar Jul 23 '21 14:07 daniyaniazi

const morgan = require('morgan')
app.use(morgan('dev')) solves the issue

prajwalmachado avatar Sep 02 '21 11:09 prajwalmachado