rtritto
rtritto
ESM became the standard for JS. A lot of packages are converting to ESM, we probably need it in future. I think that it's an opportunity to do an upgrade....
> From _codemirror_ v6 the package is converted to ESM standard. It can be imported only by ESM projects (this generates the require.resolve import error). > > In v6 Css...
@dungmv I agree with you. Bluebird is removed with #884
`ME_CONFIG_MONGODB_PORT` will be deprecated and removed with #957, please use `ME_CONFIG_MONGODB_URL` instead.
#814 was merged, this can be closed. Note: `ssl` value can be changed to _true_ using `ME_CONFIG_MONGODB_SSL` env var. FYI @BlackthornYugen
This fix, in Dockerfile, add `ME_CONFIG_MONGODB_SERVER` env var that will be removed with #957. Since the logic became once (only `ME_CONFIG_MONGODB_URL`), we need to consider if remove `ME_CONFIG_MONGODB_URL` from Dockerfile...
@dozoisch Can be fixed with [memorystore](https://www.npmjs.com/package/memorystore). `/lib/router.js` file: ```diff const session = require('express-session'); + const MemoryStore = require('memorystore')(session); ... appRouter.use(session({ ... + store: new MemoryStore({ + checkPeriod: 86400000 // prune...
Node v12 is no longer maintained. It must be removed because some new dependencies add support to Node v18 and remove to Node v12 in same release.
Revert due to the correct value of `url`. FYI @shakaran
It's fixed with https://github.com/mongo-express/mongo-express/pull/792 Still wating for the new release and Docker image (current v1.0.0-alpha.4). As alternative, you can start it locally or create a Dockerbuild using this repository.