如何在Cordova项目的www文件夹中混淆angularjs代码?

时间:2019-05-23 12:54:16

标签: angularjs cordova obfuscation

建议使用更好的工具来混淆js文件代码。我需要做同样的建议。我不需要jScrambler。还有其他解决方案吗?

1 个答案:

答案 0 :(得分:0)

您可以使用 grunt grunt-contrib-uglify

module.exports =函数(咕unt声){

grunt.loadNpmTasks('grunt-contrib-uglify');

grunt.initConfig({        
    /*
     * Minify files
     */
    uglify: {
        options: {
            mangle: false,
            compress: {
                drop_console: true
            }
        },
        my_target: {
            files: [
                {
                    src: 'app/src/**/*.js',
                    dest: 'app/www/myapp.min.js'
                }
          ]
        }
    }

});

grunt.registerTask('minify', ['uglify']);