Сборка приложения Cordova с сервером socket.io - PullRequest
0 голосов
/ 15 февраля 2019

Я пытаюсь создать веб-игру для мобильных устройств, и мне нужно будет написать свой собственный сервер для этого (для обработки многопользовательских опций и базы данных).

Я подумал об использованииCordova за то, чтобы сделать приложение доступным для магазинов приложений для IOS и Android, и я следовал этому руководству для создания игры на основе Phaser Framework и Cordova.Я следовал ему и смог запустить cordova run browser -- --livereload, чтобы успешно загрузить свою игру.

Однако, когда я попытался начать работать с бэкэндом, следуя этому уроку , яЯ столкнулся с проблемой, когда я не смог запустить свой сервер и загрузить игру успешно, как при запуске команды cordova run browser -- --livereload.Вместо этого файл cordova.js не удалось бы загрузить, и я получил бы следующую ошибку:

«Не удалось загрузить ресурс: сервер ответил с состоянием 404 (не найдено)»: cordova.js: 1

Я довольно новичок в Node.js (из Python), поэтому я надеюсь, что это не слишком сложный вопрос для начинающих, но мне интересно, как я могу запуститьмой локальный сервер и заставить мой сервер обслуживать Cordova вместо выполнения указанной выше команды?

server.js:

var express = require('express');
var app = express();
var server = require('http').Server(app);
var io = require('socket.io').listen(server);

const pathToIndex = '../www/index.html';

app.use('/css', express.static(__dirname + '/css'));
app.use('/js', express.static(__dirname + '/js'));
app.use('/assets', express.static(__dirname + '/assets'));

app.get('/', function (req, res) {
    res.sendFile(require('path').resolve(__dirname, pathToIndex));
});


server.listen(8081, function () { // Listens to port 8081
    console.log('Listening on ' + server.address().port);
});

index.html:

<!DOCTYPE html>
<!--
    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements.  See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership.  The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    with the License.  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing,
    software distributed under the License is distributed on an
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
-->

<!--
Customize this policy to fit your own app's needs. For more guidance, see:
    https://github.com/apache/cordova-plugin-whitelist/blob/master/README.md#content-security-policy
Some notes:
    * gap: is required only on iOS (when using UIWebView) and is needed for JS->native communication
    * https://ssl.gstatic.com is required only on Android and is needed for TalkBack to function properly
    * Disables use of inline scripts in order to mitigate risk of XSS vulnerabilities. To change this:
        * Enable inline JS: add 'unsafe-inline' to default-src
-->
<html>
    <head>
        
        <!-- <meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *; img-src 'self' data: content:;"> -->
        <meta name="format-detection" content="telephone=no">
        <meta name="msapplication-tap-highlight" content="no">
        <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
        <link rel="stylesheet" type="text/css" href="css/index.css">
        <title>Hello World</title>
    </head>
    <body>
        <script type="text/javascript" src="cordova.js"></script>
        <script type="text/javascript" src="http://cdn.socket.io/socket.io-1.0.3.js"></script>
        <script src='phaser.js'></script>
        <script type="text/javascript" src="js/index.js"></script>
    </body>
</html>

Заранее спасибо!

...