#here again
6 messages · Page 1 of 1 (latest)
does Permiss have a nodejs project in it?
i mean it is your computer so i would hope you know what files you have
node won’t work unless there’re nodejs specific files such as a package.json
not quite, even a single index.js will be picked up. you need a main entry in package.json if you want a different entry point.
the direct issue here is that no entry point was found. node was passed a directory, so it first tries to find a package.json with a main entry
- if found, it will try to find that path
- if not found, it will try to find
index.js