我使用了var module = require('/path/to/node_modules/module-name')
并且我的所有其他模型都被识别了,但fs
虽然我已经指出它在哪里并且确保它已安装,但却无法识别我不明白,请帮忙
我的控制台给出了这个: http://prntscr.com/g2akvs
但我所有其他模块都很好
你可以通过我的引用看到: http://prntscr.com/g2akzm
答案 0 :(得分:2)
在node.js中,apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.georgeberdovskiy.findmyphone"
minSdkVersion 25
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.support:wearable:2.0.3'
provided 'com.google.android.wearable:wearable:2.0.3'
compile 'com.google.android.gms:play-services-maps:11.0.4'
compile 'com.google.firebase:firebase-core:11.0.4'
compile 'com.google.firebase:firebase-database:11.0.4'
compile 'com.google.android.gms:play-services-wearable:11.0.4'
}
apply plugin: 'com.google.gms.google-services'
是本机的内置模块。您可以不加任何路径包含它:
fs
以下是node.js source:
中内置库的列表const fs = require('fs');