백지부터 시작하는 이세계 코딩 생활

JSON-SERVER : 실행시 ERR 해결 본문

Service || Server

JSON-SERVER : 실행시 ERR 해결

조아덕 2021. 8. 23. 10:17
JSON-SERVER --WATCH db.json
json-server : 이 시스템에서 스크립트를 실행할 수 없으므로 C:\Users\godnr\AppData\Roaming\npm\json-server.ps1 파일을 로드할 수 없습니다. 자세한 내용은 about_Execution_Policies(https://go.microsoft.com/fwlink/?Lin 
kID=135170)를 참조하십시오.
위치 줄:1 문자:1
+ json-server --watch db.json
+ ~~~~~~~~~~~
    + CategoryInfo          : 보안 오류: (:) [], PSSecurityException
    + FullyQualifiedErrorId : UnauthorizedAccess

 

SOL > 윈도우 파워쉘 > 관리자 권한으로 실행 > 아래 설정을 변경

PS C:\Windows\system32> executionpolicy
Restricted
PS C:\Windows\system32> set-executionpolicy unrestricted

실행 규칙 변경
실행 정책은 신뢰하지 않는 스크립트로부터 사용자를 보호합니다. 실행 정책을 변경하면 about_Execution_Policies 도움말
항목(https://go.microsoft.com/fwlink/?LinkID=135170)에 설명된 보안 위험에 노출될 수 있습니다. 실행 정책을
변경하시겠습니까?
[Y] 예(Y)  [A] 모두 예(A)  [N] 아니요(N)  [L] 모두 아니요(L)  [S] 일시 중단(S)  [?] 도움말 (기본값은 "N"): Y

 

$ JSON-SERVER --WATCH db.json 실행 > 아래 결과 확인

\{^_^}/ hi!

  Loading db.json
  Done

  Resources
  http://localhost:3000/posts
  http://localhost:3000/commnets
  http://localhost:3000/prfile

  Home
  http://localhost:3000

  Type s + enter at any time to create a snapshot of the database
  Watching...

Ref.

- https://cishome.tistory.com/138

 

[node.js] 윈도우10에서 supervisor 실행시 보안 오류

리눅스에서 node.js 연습을 하다가 제가 만든 연습 페이지가 리눅스 firefox 에서 제대로 나오질 않았습니다. 이것 땜에 며칠을 이것저것 바꾸면서 다시 해보고 정보도 찾아보고 했는데도 결국 해결

cishome.tistory.com

 

'Service || Server' 카테고리의 다른 글

Task  (0) 2021.08.25
Swagger  (0) 2021.08.24
Nodejs : normalizePort  (0) 2021.07.15
Infrastructure as a Service (IaaS)  (0) 2021.07.13
mysql connection pool 원리 및 필요성  (0) 2021.07.12
Comments