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));
相关推荐
mCell10 小时前
GSAP ScrollTrigger 详解
前端·javascript·动效
gnip10 小时前
Node.js 子进程:child_process
前端·javascript
codingandsleeping16 小时前
使用orval自动拉取swagger文档并生成ts接口
前端·javascript
白水清风17 小时前
微前端学习记录(qiankun、wujie、micro-app)
前端·javascript·前端工程化
用户221520442780017 小时前
new、原型和原型链浅析
前端·javascript
阿星做前端17 小时前
coze源码解读: space develop 页面
前端·javascript
叫我小窝吧17 小时前
Promise 的使用
前端·javascript
前端康师傅19 小时前
JavaScript 作用域
前端·javascript
云枫晖19 小时前
JS核心知识-事件循环
前端·javascript
eason_fan20 小时前
Git 大小写敏感性问题:一次组件重命名引发的CI构建失败
前端·javascript