Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /**
  2. Licensed to the Apache Software Foundation (ASF) under one
  3. or more contributor license agreements. See the NOTICE file
  4. distributed with this work for additional information
  5. regarding copyright ownership. The ASF licenses this file
  6. to you under the Apache License, Version 2.0 (the
  7. "License"); you may not use this file except in compliance
  8. with the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing,
  11. software distributed under the License is distributed on an
  12. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  13. KIND, either express or implied. See the License for the
  14. specific language governing permissions and limitations
  15. under the License.
  16. */
  17. /* globals Promise: true */
  18. var chalk = require('chalk');
  19. var express = require('express');
  20. /**
  21. * @desc Launches a server with the specified options and optional custom handlers.
  22. * @param {{root: ?string, port: ?number, noLogOutput: ?bool, noServerInfo: ?bool, router: ?express.Router, events: EventEmitter}} opts
  23. * @returns {*|promise}
  24. */
  25. module.exports = function (opts) {
  26. var that = this;
  27. var promise = new Promise(function (resolve, reject) {
  28. opts = opts || {};
  29. var port = opts.port || 8000;
  30. var log = module.exports.log = function (msg) {
  31. if (!opts.noLogOutput) {
  32. if (opts.events) {
  33. opts.events.emit('log', msg);
  34. } else {
  35. console.log(msg);
  36. }
  37. }
  38. };
  39. var app = that.app;
  40. var server = require('http').Server(app);
  41. that.server = server;
  42. if (opts.router) {
  43. app.use(opts.router);
  44. }
  45. if (opts.root) {
  46. that.root = opts.root;
  47. app.use(express.static(opts.root));
  48. }
  49. // If we have a project root, make that available as a static root also. This can be useful in cases where source
  50. // files that have been transpiled (such as TypeScript) are located under the project root on a path that mirrors
  51. // the the transpiled file's path under the platform root and is pointed to by a map file.
  52. if (that.projectRoot) {
  53. app.use(express.static(that.projectRoot));
  54. }
  55. var listener = server.listen(port);
  56. listener.on('listening', function () {
  57. that.port = port;
  58. var message = 'Static file server running on: ' + chalk.green('http://localhost:' + port) + ' (CTRL + C to shut down)';
  59. if (!opts.noServerInfo) {
  60. log(message);
  61. }
  62. resolve(message);
  63. });
  64. listener.on('error', function (e) {
  65. if (e && e.toString().indexOf('EADDRINUSE') > -1) {
  66. port++;
  67. server.listen(port);
  68. } else {
  69. reject(e);
  70. }
  71. });
  72. });
  73. return promise;
  74. };