commonjs

    0熱度

    1回答

    這是CommonJS的格式 Vue.Component('custom-component',{ template : '<p>Some template</p>', data : {} methods : {} }); 這是.vue格式 <template> <p>Some template</p> </template> <script

    0熱度

    1回答

    我必須在我的應用程序中以xls格式發送報告。 我創建一個接收數據併發送xls的API代價很高。 我試過使用一些代碼,但所有代碼都在node.js中,我無法找到用於創建xls的CommonJs(模塊,插件等)。 有人可以幫助我在鈦中創建xls嗎? 謝謝

    1熱度

    2回答

    我想將Angular 2項目編譯爲commonjs模塊。 我有這個tsconfig.json: { "compilerOptions": { "declaration": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "mapRoot": "./",

    0熱度

    1回答

    我有一個打字稿項目,這個項目的結構不同於典型的Maven Java項目沒有組織。下面或多或少是項目結構的樣子。 . ├── gulpfile.js ├── index.html ├── package.json ├── src │   ├── entity │   │   ├── car.ts │   │   ├── animal.ts │   └── sevice │  

    0熱度

    2回答

    在ES6我可以這樣做: const { findIndex, last } from 'lodash'; 我可以做同樣的與要求CommonJS的?

    -2熱度

    3回答

    我是如何在一個名爲util.js中文件,簡單地反轉字符串 function reverseString(str) { var reversed = " "; for (var i = str.length - 1; i >= 0; i--) { reversed += str[i]; } return reversed; } module.e

    0熱度

    1回答

    我正在使用以下編譯器選項作爲我正在創建的工具,並且在編譯器找不到編譯後的scss文件時看到錯誤。 換句話說,我有以下文件: ClassA.tsx 此文件已行:import styles from './ClassA.module.scss'; ClassA.module.scss 文件編譯後,我有文件: ClassA.js 該文件具有行:var ClassA_module_scss_1 = req

    0熱度

    1回答

    我需要動態地使用webpack異步加載模塊。我的目標是循環訪問一個數組並加載這些模塊(這是爲了我的反應路由器的目的,這裏不重要)。 這是我的代碼: const arr = ['some-module', 'module-2']; arr.map(moduleName => { require.ensure([], require => { if(process.env.IS_

    0熱度

    1回答

    在Node.js的(CommonJS的模塊系統),我們有 require('foo'); 有沒有辦法將數據傳遞到模塊,是這樣的: require('foo', {extra:'args'}); 我d一旦加載,就希望能夠在模塊本身中設置一個值,並且我不能控制'foo'的結構 - 它可能會導出一個函數,或者整個模塊可能會運行完成。 用例實際上是相當普遍的: 我有一個模塊,像這樣: // foo

    5熱度

    1回答

    bundle.js 2.83 kB 0 [emitted] main bundle.js.map 3.36 kB 0 [emitted] main 除去node_modules當添加下面所述的自定義的外部的代碼之後定義的,我可以被直接包括在bundle.js輸出取出node_modules。 bundle.js 743 kB 0 [emitted] main bundle.js.ma