プログラミング初心者です。
Webアプリケーションを作成するために、Node.jsをインストールし、pakcage.jsonを作成しようとしたのですが、ここで問題発生です。
package.jsonを作成するために npm init で質問に答えて必要な項目を打ち込んだのですがエラーが沢山出てきてpackage.jsonを作成できません。
この問題を解決できる方がおりましたらおどうか願いします。
発生している問題・エラーメッセージ
npm ERR! code EPERM npm ERR! syscall open npm ERR! path c:\Users\sushi-bot\package.json npm ERR! errno -4048 npm ERR! Error: EPERM: operation not permitted, open 'c:\Users\sushi-bot\package.json' npm ERR! [Error: EPERM: operation not permitted, open 'c:\Users\sushi-bot\package.json'] { npm ERR! errno: -4048, npm ERR! code: 'EPERM', npm ERR! syscall: 'open', npm ERR! path: 'c:\Users\sushi-bot\package.json' npm ERR! } npm ERR! npm ERR! The operation was rejected by your operating system. npm ERR! It's possible that the file was already in use (by a text editor or antivirus), npm ERR! or that you lack permissions to access it. npm ERR! npm ERR! If you believe this might be a permissions issue, please double-check the npm ERR! permissions of the file and its containing directories, or try running npm ERR! the command again as root/Administrator. npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\Taisei\AppData\Roaming\npm-cache\_logs\2020-07-27T13_17_12_076Z-debug.log
該当のソースコード
c:\Users\sushi-bot>npm init This utility will walk you through creating a package.json file. It only covers the most common items, and tries to guess sensible defaults. See `npm help init` for definitive documentation on these fields and exactly what they do. Use `npm install <pkg>` afterwards to install a package and save it as a dependency in the package.json file. Press ^C at any time to quit. package name: (sushi-bot) version: (1.0.0) description: entry point: (index.js) test command: git repository: keywords: author: license: (ISC) About to write to c:\Users\sushi-bot\package.json: { "name": "sushi-bot", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "author": "", "license": "ISC" } Is this OK? (yes)
試したこと
Node.js command promptの再起動
補足情報(FW/ツールのバージョンなど)
・使用PC Windows10
・npm バージョン6.14.6
・npmを用いるために同時にインストールしたNode.jsのバージョン12.18.3