6

node-webkit (つまり nw.js) v0.8.6で使用するpty.jsをビルドしようとしています。

mkdir testapp && cd testapp
nvm use 0.10.36
npm install -g nw-gyp
npm install pty.js
cd node_modules/pty.js

# Build the native addon for node-webkit v0.8.6:
nw-gyp configure --target=0.8.6 && nw-gyp build

出力は で終了しgyp info okます。

シンプルなapp.jsindex.htmlを使用すると、アプリは JavaScript コンソールでエラーなしで起動します。

<!-- index.html -->

<!DOCTYPE html>
<html>
  <head>
    <title>Hello World!</title>
  </head>
  <body>
    <h1>Hello World!</h1>
    <script src="app.js"></script>
  </body>
</html>
// app.js

var pty = require('pty.js');

var term = pty.spawn('bash', [], {
  name: 'xterm-color',
  cols: 80,
  rows: 30,
  cwd: process.env.HOME,
  env: process.env
});

term.on('data', function(data) {
  console.log(data);
});

term.write('ls\r');
term.resize(100, 40);
term.write('ls /\r');

console.log(term.process);

パッケージ.json :

{
    "name": "testapp",
    "main": "index.html"
}

app.jsbundle.jsにバンドルして、webpack経由で ES6 と JSX のコンパイルをサポートしたいと考えています

<!-- index.html -->

<!DOCTYPE html>
<html>
  <head>
    <title>Hello World!</title>
  </head>
  <body>
    <h1>Hello World!</h1>
    <script src="bundle.js"></script>
  </body>
</html>

app.js のバンドル:

npm install -g webpack
webpack app.js bundle.js --target="node-webkit"  # This fails

しかし、webpack は次のエラーで失敗します:

Hash: 6c3cd8b4ec249ab8fd05
Version: webpack 1.6.0
Time: 76ms
    Asset   Size  Chunks             Chunk Names
bundle.js  21244       0  [emitted]  main
   [0] ./app.js 311 {0} [built]
    + 10 hidden modules

ERROR in ./~/pty.js/build/Release/pty.node
Module parse failed: /Users/Spencer/Desktop/testapp/node_modules/pty.js/build/Release/pty.node Line 1: Unexpected token ILLEGAL
You may need an appropriate loader to handle this file type.
(Source code omitted for this binary file)
 @ ./~/pty.js/lib/pty.js 10:10-46

requireネイティブ バイナリ (のような) を ing するときにローダーを使用する必要がありpty.nodeますか? webpack のドキュメントには、"node-webkit"ターゲットが「ネイティブ node.js モジュールをサポートする」と記載されています。おそらく、まだネイティブ アドオンをサポートしていないのでしょうか?

4

1 に答える 1

1

webpack を動作させることはできませんでしたが、以下を使用して ES6 + JSX を動作させることができましたrequire('babel/register')

<!-- index.html -->

<!DOCTYPE html>
<html>
<head>
  <title>Hello World!</title>
</head>
<body>
  <main></main>
  <script>
    require('babel/register');
    require('./js/app');
  </script>
</body>
</html>
// ./js/app.js

import React from 'react';

React.render(
  <span>Hello World!</span>,
  document.querySelector('main')
);
于 2015-02-28T20:43:40.353 に答える