React native ultimate series

C:\Users\arjun\DoneWithIt>npm start

@ start C:\Users\arjun\DoneWithIt
expo start

Starting project at C:\Users\arjun\DoneWithIt
Developer tools running on http://localhost:19002
Opening developer tools in the browser…
EISDIR: illegal operation on a directory, read
Error: EISDIR: illegal operation on a directory, read
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! @ start: expo start
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the @ start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\arjun\AppData\Roaming\npm-cache_logs\2021-04-16T09_34_51_353Z-debug.log

please help me

EISDIR means that the target of the operation is a directory but the expected filetype of the target is something other than a directory. So, you could have a path problem or, perhaps, a setup problem.

Try running

expo diagnostics

in the DoneWithIt folder at the command line prompt and see what you get. Also, the debug.log may give you some useful information.

Regards,
Dave (just another student)