MEAN IO:需要配置验证错误JWT_SECRET

时间:2018-09-30 12:05:27

标签: node.js mongodb express mean-stack mean

我正在从mean.io克隆建立一个新的Mean项目。在安装npm软件包并启动mongod之后。我运行npm start会给我带来这种错误。

Error: Config validation error: child "JWT_SECRET" fails because ["JWT_SECRET" is required]

这是我的config.js

const Joi = require('joi');

// require and configure dotenv, will load vars in .env in PROCESS.ENV
require('dotenv').config();

// define validation for all the env vars
const envVarsSchema = Joi.object({
  NODE_ENV: Joi.string()
    .allow(['development', 'production', 'test', 'provision'])
    .default('development'),
  SERVER_PORT: Joi.number()
    .default(4040),
  MONGOOSE_DEBUG: Joi.boolean()
    .when('NODE_ENV', {
      is: Joi.string().equal('development'),
      then: Joi.boolean().default(true),
      otherwise: Joi.boolean().default(false)
    }),
  JWT_SECRET: Joi.string().required()
    .description('JWT Secret required to sign'),
  MONGO_HOST: Joi.string().required()
    .description('Mongo DB host url'),
  MONGO_PORT: Joi.number()
    .default(27017)
}).unknown()
  .required();

const { error, value: envVars } = Joi.validate(process.env, envVarsSchema);
if (error) {
  throw new Error(`Config validation error: ${error.message}`);
}

const config = {
  env: envVars.NODE_ENV,
  port: envVars.SERVER_PORT,
  mongooseDebug: envVars.MONGOOSE_DEBUG,
  jwtSecret: envVars.JWT_SECRET,
  frontend: envVars.MEAN_FRONTEND || 'angular',
  mongo: {
    host: envVars.MONGO_HOST,
    port: envVars.MONGO_PORT
  }
};

module.exports = config;

不知道问题出在哪里。我没有改变任何事情,只是从mean.io官方网站上克隆而来。安装了npm软件包并启动了mongodb。

1 个答案:

答案 0 :(得分:4)

.env文件添加到具有以下内容的根文件夹中:

NODE_ENV=development
SERVER_PORT=4040
JWT_SECRET=0a6b944d-d2fb-46fc-a85e-0295c986cd9f
MONGO_HOST=mongodb://localhost/mean
MEAN_FRONTEND=angular

您可能会在根目录中找到一个.env.example文件,您可以将其重命名为.env。可以找到here的示例.env.example文件。