當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript gulp-nodemon類代碼示例

本文整理匯總了TypeScript中gulp-nodemon的典型用法代碼示例。如果您正苦於以下問題:TypeScript gulp-nodemon類的具體用法?TypeScript gulp-nodemon怎麽用?TypeScript gulp-nodemon使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了gulp-nodemon類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: watch

 @Task()
 watch() {
     gulp.watch('src/**/*.ts', this.buildTypescript);
     nodemon({
         script: './dist/src/server.js'
     });
 }
開發者ID:fedoranimus,項目名稱:typescript-mean-stack,代碼行數:7,代碼來源:gulpfile.ts

示例2: nodemon

gulp.task('server.w', (done) =>
  nodemon({
    script: 'server/boot.ts',
    watch: 'server',
    ext: 'ts',
    env: { 'APP_ENVIRONMENT': process.env.APP_ENVIRONMENT },
    execMap: {
      ts: 'node node_modules/ts-node/dist/bin/ts-node.js'
    }
  }).on('start', () => {
    console.log('Server started');
  }).once('start', () => {
    const tinylrObj = tinylr();
    tinylrObj.listen(LIVE_RELOAD_PORT);
    const intervalId = setInterval(() => {
      const existsDist = fse.existsSync(PATHS.dest.dist.appBundle);
      if (existsDist) {
        clearInterval(intervalId);
        setTimeout(() => {
          openResource(`http://localhost:${PORT}`);
          done();
        }, 3000);
      }
    }, 500);
  })
開發者ID:brunkb,項目名稱:a2-contact,代碼行數:25,代碼來源:gulpfile.ts

示例3: nodemon

gulp.task('server.start', (done) => {
  nodemon({
    script: 'server/index.js',
    watch: ['server'],
    ignore: ['node_modules/**'],
    ext: 'js html',
    env: { 'NODE_ENV': 'development' }
  })
  .on('start', () => {
    console.log('Server started');
  })
  .once('start', () => {
    const tinylrObj = tinylr();
    tinylrObj.listen(LIVE_RELOAD_PORT);
    const intervalId = setInterval(() => {
      const existsDist = fse.existsSync(PATHS.dest.dist.appBundle);
      if (existsDist) {
        clearInterval(intervalId);
        setTimeout(() => {
          openResource(`http://localhost:${PORT}`);
          done();
        }, 1000);
      }
    }, 500);
  })
});
開發者ID:JayKan,項目名稱:angular2-change-detection,代碼行數:26,代碼來源:gulpfile.ts

示例4: nodemon

gulp.task('nodemon', ['script'], () => {
    nodemon({
        script: 'dist/server/app.js',
        ext: 'js',
        env: { 'NODE_ENV': 'development' }
    });
});
開發者ID:dyliew,項目名稱:hapi-postgres-typescript-play,代碼行數:7,代碼來源:gulpfile.ts

示例5: run

  static run(config: any, tinylr: any) {
    nodemon({
      script: "server/boot.ts",
      watch: ["server"],
      ext: "ts",
      env: { profile: process.env.profile },
      execMap: { ts: "ts-node" }
    });

    tinylr.listen(config.liveReloadPort);
  }
開發者ID:snyderjk,項目名稱:Ang2-Snyd-Seed,代碼行數:11,代碼來源:nodemon.ts

示例6: nodemon

gulp.task('server.watch', () => {
  nodemon({
    script: 'server/bootstrap.ts',
    watch: 'server',
    ext: 'ts',
    env: { 'profile': process.env.profile },
    execMap: {
      ts: 'ts-node'
    }
  }).on('restart', () => {
    process.env.RESTART = true;
  });
});
開發者ID:australdev,項目名稱:app,代碼行數:13,代碼來源:gulpfile.ts

示例7: runAndWatch

export function runAndWatch({
  script,
  production,
  watch
}) {
  nodemon({
    script,
    ext: 'js',
    delay: 200,
    watch: watch ? (Array.isArray(watch) ? watch : [watch]) : [dirname(script)],
    execMap: {
      js: `node --debug=${5858}`
    },
    env: {
      NODE_ENV: production ? 'production' : 'development'
    }
  });
}
開發者ID:botique-ai,項目名稱:bigg-botique,代碼行數:18,代碼來源:runAndWatch.ts

示例8: nodemon

export = () => {
    nodemon({
        script: 'dist/dev/server/server.js',
        watch: ['dist/dev/server']
    });
};
開發者ID:Jaroost,項目名稱:builder_app,代碼行數:6,代碼來源:serve.express.ts


注:本文中的gulp-nodemon類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。