美文网首页prisma我爱编程
PRISMA开发环境准备

PRISMA开发环境准备

作者: guog | 来源:发表于2018-04-27 17:40 被阅读23次

    本文属使用Prisma构建GraphQL服务系列。

    必备环境

    • docker
    • nodejs

    安装PRISMA

    npm install -g prisma
    

    注意,如果提示

    ┌─────────────────────────────────────────────────────────┐
    │               prisma update check failed                │
    │           Try running with sudo or get access           │
    │          to the local update config store via           │
    │ sudo chown -R $USER:$(id -gn $USER) /Users/guog/.config │
    └─────────────────────────────────────────────────────────┘
    

    应先使用npm命令

    npm config set unsafe-perm true
    

    参考

    相关文章

      网友评论

      本文标题:PRISMA开发环境准备

      本文链接:https://www.haomeiwen.com/subject/bcfncftx.html