Local file access with JavaScript

前端 未结 13 2554
悲哀的现实
悲哀的现实 2020-11-21 04:07

Is there local file manipulation that\'s been done with JavaScript? I\'m looking for a solution that can be accomplished with no install footprint like requiring Adobe AIR.<

13条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-21 05:11

    NW.js allows you to create desktop applications using Javascript without all the security restrictions usually placed on the browser. So you can run executables with a function, or create/edit/read/write/delete files. You can access the hardware, such as current CPU usage or total ram in use, etc.

    You can create a windows, linux, or mac desktop application with it that doesn't require any installation.

    • http://nwjs.io

提交回复
热议问题