I have an Angular app and a component where I upload files. Now I want to check a real file's type using the file-type library. It has a huge number of downloads and almost no issues, but I can't make it work. So, probably, I'm missing something basic but crucial.
I took the basic example of checking a file from BLOB:
const FileType = require('file-type/browser');
(async () => {
const blob = new Blob(['<?xml version="1.0" encoding="ISO-8859-1" ?>'], {
type: 'plain/text',
endings: 'native'
});
console.log(await FileType.fromBlob(blob));
//=> {ext: 'txt', mime: 'plain/text'}
})();
but it gives me an error:
Error in C:/project/node_modules/readable-web-to-node-stream/lib/index.js
Module not found: Error: can't resolve 'stream' in C:/project/node_modules/readable-web-to-node-stream/lib/
I've added a stream package (what is not a good solution, probably), and the error was changed to:
Uncaught TypeError: Class extends value undefined is not a constructor or null
After that, I decided that might be my current project is too complicated and I can give it a shot in a new small project, so I created one. Installed file-type and took the same example from their page (I only changed const FileType = require('file-type/browser'); to import {fromBlob} from 'file-type/browser');
But here another error appears:
Uncaught ReferenceError: global is not defined
I added (window as any)['global'] = window; to the polyfill.js
Uncaught ReferenceError: Buffer is not defined
I added the buffer package and global.Buffer = global.Buffer || require('buffer').Buffer; to the polyfill.js
Uncaught ReferenceError: process is not defined
Here I gave up. I definitely don't understand something and need some help. What I missed?
Wanted to add a stackblitz example, but it gives me another error:
Import error, can't find file: ./common