nitros.ioを使用してノード env を作成しました。ターミナル内にyeomanをインストールしました。実行しようとするgrunt server
と、次のエラーが表示されます。
Fatal error: Unable to find local grunt.
If you're seeing this message, either a Gruntfile wasn't found or grunt
hasn't been installed locally to your project. For more information about
installing and configuring grunt, please see the Getting Started guide:
http://gruntjs.com/getting-started
ポート3000に接続するよりもプレビューに行くと、これが得られます
127.0.0.1 または "localhost" を 0.0.0.0 に変更するノードの参照状態
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(3000, '0.0.0.0');
console.log('Server running at http://0.0.0.0:3000/');
サーバーの Grunt 構文は少し異なります
connect: {
options: {
port: 3000,
// Change this to '0.0.0.0' to access the server from outside.
hostname: '0.0.0.0' //
},
この変更後もエラーは持続します。grunt server
ポート 3000を実行またはプレビューすると失敗する
私が間違っていることについてのアイデアはありますか?自分のサイトがブラウザに表示されるように、grunt サーバーを実行するにはどうすればよいですか?