10 examples of 'react-native require' in JavaScript

Every line of 'react-native require' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
30function __webpack_require__(moduleId) {
31 // Check if module is in cache
32 if (installedModules[moduleId]) {
33 return installedModules[moduleId].exports;
34 }
35 // Create a new module (and put it into the cache)
36 const module = (installedModules[moduleId] = {
37 i: moduleId,
38 l: false,
39 exports: {},
40 });
41
42 // If moduleId is a string, map it to integer Id
43 const moduleIntId =
44 typeof moduleId === 'string'
45 ? moduleMappings.modules[moduleId]
46 : moduleId;
47
48 // Load module on the native side
49 if (singleBundleMode) {
50 // Use 0 as a segementId to be compatible with RN 0.59.
51 globalScope.nativeRequire(moduleIntId, 0);
52 } else {
53 globalScope.nativeRequire(moduleIntId, bundleName);
54 }
55
56 // Return the exports of the module
57 return module.exports;
58}
65componentDidMount() {
66 codePush.sync();
67}
15function require(name) {
16 if (modules.hasOwnProperty(name)) return modules[name];
17 if (defs.hasOwnProperty(name)) {
18 var exports = modules[name] = {};
19 var module = {exports:exports};
20 var fn = defs[name];
21 fn(module, exports);
22 return modules[name] = module.exports;
23 }
24 throw new Error("Module not found: " + name);
25}
167function customWebpackRequire(moduleId) {
168 // Check if module is in cache
169 if(installedModules[moduleId])
170 return installedModules[moduleId].exports;
171
172 // Create a new module (and put it into the cache)
173 var module = installedModules[moduleId] = {
174 i: moduleId,
175 l: false,
176 exports: {}
177 };
178
179 // Try adding .js / .ts
180 if (!modules[moduleId] && typeof moduleId === 'string') {
181 var newModuleId;
182 if (modules[newModuleId = moduleId + '.js'] || modules[newModuleId = moduleId + '.ts']) {
183 moduleId = newModuleId;
184 // alias also installedModules:
185 installedModules[moduleId] = module;
186 }
187 }
188
189 // Execute the module function
190 modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
191
192 // Flag the module as loaded
193 module.l = true;
194
195 // Return the exports of the module
196 return module.exports;
197}
21function require(path) {
22 if (path.match(/i18n/)) {
23 return I18n;
24 } else {
25 return Translations;
26 }
27}
12function require(name) {
13 var module = require.modules[name];
14 if (!module) throw new Error('failed to require "' + name + '"');
15
16 if (!('exports' in module) && typeof module.definition === 'function') {
17 module.client = module.component = true;
18 module.definition.call(this, module.exports = {}, module);
19 delete module.definition;
20 }
21
22 return module.exports;
23}
29function require(name) {
30 // we are currently in test dir, i.e. ../ is view; ../../ is views; and ../../../ is design doc root
31 print( "loading requires code from \"../../../" + name + "\"" ) ;
32 eval( "var exports = {}; eval(read(\"../../../" + name + "\"));" ) ;
33 return exports ;
34}
24function inputRequire() {
25 return require('./lazy');
26},
54componentDidMount() {
55 if (!__DEV__) {
56 codePush.sync({
57 updateDialog: false,
58 installMode: codePush.InstallMode.IMMEDIATE,
59 });
60 }
61}
39componentDidMount() {
40 CodePush.sync({ updateDialog: true, installMode: CodePush.InstallMode.IMMEDIATE },
41 (status) => {
42 switch (status) {
43 case CodePush.SyncStatus.DOWNLOADING_PACKAGE:
44 this.setState({ showDownloadingModal: true });
45 this._modal.open();
46 break;
47 case CodePush.SyncStatus.INSTALLING_UPDATE:
48 this.setState({ showInstalling: true });
49 break;
50 case CodePush.SyncStatus.UPDATE_INSTALLED:
51 this._modal.close();
52 this.setState({ showDownloadingModal: false });
53 break;
54 default:
55 break;
56 }
57 },
58 ({ receivedBytes, totalBytes }) => {
59 this.setState({ downloadProgress: (receivedBytes / totalBytes) * 100 });
60 }
61 );
62}

Related snippets