nodejs的切换commonjs和esmodule语法

package.json里修改type:

json 复制代码
{
	...
	"type": "commonjs",//commonjs语法
	"type": "module",//esmodule语法
	...
}

commonjs语法:

CommUtils.js文件:

javascript 复制代码
const fs = require('fs');

function readJsonFile(filePath) {
    try {
        const data = fs.readFileSync(filePath, 'utf-8');
        return JSON.parse(data);
    } catch (error) {
        // 处理读取文件或解析 JSON 错误
        console.error(`Error reading JSON file ${filePath}: ${error.message}`);
        return null;
    }
}

function writeJsonFile(filePath, data) {
    // 如果data为null,则不写入文件
    if (data === null || data === undefined || (Array.isArray(data) && data.length === 0)) {
        return;
    }

    try {
        const jsonData = JSON.stringify(data, null, 4);
        fs.writeFileSync(filePath, jsonData, 'utf-8');
    } catch (error) {
        // 处理写入文件错误
        console.error(`Error writing JSON file ${filePath}: ${error.message}`);
    }
}


function bytesToInteger(bytes, isBigEndian) {  
    if (bytes.length < 1 || bytes.length > 8) {  
        throw new Error("bytes.length<1||bytes.length>8");  
    }  
  
    let temp = 0;  
  
    if (isBigEndian) {  
        for (let i = 0; i < bytes.length; i++) { // 从低位到高位  
            if (i === 0) {  
                temp = (bytes[i] & 0xFF) << (i * 8);  
            } else {  
                temp = temp | ((bytes[i] & 0xFF) << (i * 8));  
            }  
        }  
    } else {  
        for (let i = bytes.length - 1; i >= 0; i--) { // 从高位到低位  
            if (i === (bytes.length - 1)) {  
                temp = (bytes[i] & 0xFF) << ((bytes.length - i - 1) * 8);  
            } else {  
                temp = temp | ((bytes[i] & 0xFF) << ((bytes.length - i - 1) * 8));  
            }  
        }  
    }  
    return temp;  
}

function toHexString(num){
    return '0x'+num.toString(16).toUpperCase().padStart(2,'0');
}
function listToHexString(arr){
    let str = ''
    for(let i=0;i<arr.length;i++){
        str += toHexString(arr[i]) +(i!=arr.length-1?', ':'')
    }
    return str
}

module.exports = {
    readJsonFile,
    writeJsonFile,
    bytesToInteger,
    toHexString,
    listToHexString,
}

使用:

javascript 复制代码
const path = require('path');
const CommUtils = require(path.join(__dirname, 'CommUtils.js'));
console.log(CommUtils.toHexString(111));

esmodule语法:

CommUtils.js文件:

javascript 复制代码
import { readFileSync, writeFileSync } from 'fs';

function readJsonFile(filePath) {
    try {
        const data = readFileSync(filePath, 'utf-8');
        return JSON.parse(data);
    } catch (error) {
        // 处理读取文件或解析 JSON 错误
        console.error(`Error reading JSON file ${filePath}: ${error.message}`);
        return null;
    }
}

function writeJsonFile(filePath, data) {
    // 如果data为null,则不写入文件
    if (data === null || data === undefined || (Array.isArray(data) && data.length === 0)) {
        return;
    }

    try {
        const jsonData = JSON.stringify(data, null, 4);
        writeFileSync(filePath, jsonData, 'utf-8');
    } catch (error) {
        // 处理写入文件错误
        console.error(`Error writing JSON file ${filePath}: ${error.message}`);
    }
}


function bytesToInteger(bytes, isBigEndian) {  
    if (bytes.length < 1 || bytes.length > 8) {  
        throw new Error("bytes.length<1||bytes.length>8");  
    }  
  
    let temp = 0;  
  
    if (isBigEndian) {  
        for (let i = 0; i < bytes.length; i++) { // 从低位到高位  
            if (i === 0) {  
                temp = (bytes[i] & 0xFF) << (i * 8);  
            } else {  
                temp = temp | ((bytes[i] & 0xFF) << (i * 8));  
            }  
        }  
    } else {  
        for (let i = bytes.length - 1; i >= 0; i--) { // 从高位到低位  
            if (i === (bytes.length - 1)) {  
                temp = (bytes[i] & 0xFF) << ((bytes.length - i - 1) * 8);  
            } else {  
                temp = temp | ((bytes[i] & 0xFF) << ((bytes.length - i - 1) * 8));  
            }  
        }  
    }  
    return temp;  
}

function toHexString(num){
    return '0x'+num.toString(16).toUpperCase().padStart(2,'0');
}
function listToHexString(arr){
    let str = ''
    for(let i=0;i<arr.length;i++){
        str += toHexString(arr[i]) +(i!=arr.length-1?', ':'')
    }
    return str
}

export default {
    readJsonFile,
    writeJsonFile,
    bytesToInteger,
    toHexString,
    listToHexString,
}

使用:

javascript 复制代码
import CommUtils from './CommUtils.js';
console.log(CommUtils.toHexString(111));
相关推荐
惜.己27 分钟前
javaScript基础(8个案例+代码+效果图)
开发语言·前端·javascript·vscode·css3·html5
长天一色1 小时前
【ECMAScript 从入门到进阶教程】第三部分:高级主题(高级函数与范式,元编程,正则表达式,性能优化)
服务器·开发语言·前端·javascript·性能优化·ecmascript
NiNg_1_2341 小时前
npm、yarn、pnpm之间的区别
前端·npm·node.js
NiNg_1_2341 小时前
Vue3 Pinia持久化存储
开发语言·javascript·ecmascript
读心悦1 小时前
如何在 Axios 中封装事件中心EventEmitter
javascript·http
神之王楠2 小时前
如何通过js加载css和html
javascript·css·html
余生H2 小时前
前端的全栈混合之路Meteor篇:关于前后端分离及与各框架的对比
前端·javascript·node.js·全栈
流烟默2 小时前
Vue中watch监听属性的一些应用总结
前端·javascript·vue.js·watch
茶卡盐佑星_3 小时前
meta标签作用/SEO优化
前端·javascript·html
与衫3 小时前
掌握嵌套子查询:复杂 SQL 中 * 列的准确表列关系
android·javascript·sql