0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【ReactNative】Unable to resolve module path from ...

Last updated at Posted at 2021-06-15

前提

ReactNativeにて、Unable to resolve module path from ...(native層のファイル)というエラーが出た。

.
├── api_dir
│   ├── fuga
│   └── fugafuga
└── native_dir
    ├── hoge
    └── hogehoge

エラーになる理由

ReactNativeはNode.jsが元々提供している"path"モジュールを使用することができない。

native層以外であれば、Node.jsが提供している"path"を直接使用することが可能なため、
npm installすることなく、const path = require('path');を記述するだけで使用が可能。

native層の場合は、npmのパッケージをinstallする必要がある。

$ npm install --save path
package.json
"path": "^0.12.7",
hoge.js
const path = require('path');

Node.jsはJavaScriptそのものでなく、あくまでNode.jsという認識が大切でした・・・

参考

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?