es6 vs commonjs
Posted stupid_one
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了es6 vs commonjs相关的知识,希望对你有一定的参考价值。
‘use strict‘ export function showMe() { alert("es6"); }; class logging { constructor() { alert("es6 class"); } ha() { console.log("fff"); } } export const log = new logging(); #...... import { showMe, log } from ‘./es6.js‘; showMe(); log.ha();
‘use strict‘ function showMeC() { alert("commonjs"); } module.exports = { showMeC: showMeC, }; # ...... const { showMeC } = require(‘./commonjs.js‘); showMeC();
以上是关于es6 vs commonjs的主要内容,如果未能解决你的问题,请参考以下文章