fedwiki / wiki-server

Federated Wiki client and server in Node.js
Other
153 stars 35 forks source link

Update dependencies #185

Closed paul90 closed 2 months ago

paul90 commented 2 months ago

Continuing the removal of unnecessary dependencies.

With both lodash and mkdirp native Javascript, and Node.js, has advanced such that those packages are no longer required.

'sanitize-caja' has been replaced with DOMPurify, which is also used in client plugins.

'lodash' has been replaced with native JavaScript.

'mkdirp' has been replaced with node fs.mkdir() with the recursive option.