我需要帮助混淆我的打字代码。我正在使用这个电子模板,尽管这个问题对webpack和混淆者来说似乎是特别的。
我使用以下版本:
"webpack": "4.46.0",
"webpack-obfuscator": "^3.3.0"
我的配置如下:
webpack.main.js
module.exports = {
/**
* This is the main entry point for your application, it's the first file
* that runs in the m
有大量的Javascript混淆网站可以达到这个目的,但我不知道用OOP创建代码时该怎么办。
顺便说一句,我混淆了一下,以减少尺寸和可读性。我很清楚,它并不能真正保护任何东西。
例如:
<script>
$(document).ready(function() {
myFunction.init(); // init
});
</script>
file.js
var myFunction = function () {
return {
//main function to initiate the mod
我不知道有什么错误:TypeError: res.json is not a function
我阅读了快递文档,没有看到任何错误的语法或其他错误。
代码:
index.js
import express from "express";
import postRoutes from "./routes/posts.js";
const app = express();
app.use(express.json());
app.use("/api/posts", postRoutes);
app.listen(8800, () => {
在映射字符串数组时,在Node.js中看到奇怪的行为。在下面的代码中,第一个map函数正确地打印images数组中的字符串。在下面的一行中,imgName变量是循环中每个项的undefined。
images.map(function(imgName){console.log(imgName)}) // this properly prints each string in the array
images.map(function(imgName) { // each imgName returns undefined
// first check the size of the ima