Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
Can I create a single iconic file of several html files like creating .exe file in java using servlets, java beans, dao etc.. please do suggest.
There are tools out there that can embed all the external resources of an html file into a single html file, but not like an .exe file.
Examples:
https://github.com/remy/inliner
https://github.com/jgallen23/grunt-inline-css
https://github.com/ceee/grunt-datauri
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I'm trying to create a Windows 10 application using HTML CSS and JavaScript... I already have the code saved but I need a way to open it as a .exe file or something... It needs to be a separate file that I can open in a new window.
Thanks in advance!
To create an application using web technologies, such as HTML, CSS, and JavaScript, I will recommend you start looking into the Electron Framework which allows you to use web technologies resources for app development.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I have .exe file compiled from javascript and python. I would like to decompile it and get back the code.
I tried many python decompiler libraries but it doesn't work.
I tried using `hexdump` or `xxd` commands but I am new to it so I don't really know how to use them.
thanks (and sorry for english mistakes)
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
this is a bit silly but I am having problems to open one PDF tab in my Vue application with NUXT and Vuetify..
I am trying to use
Download PDF
I also tried to use <nuxt-link> but didn't work.
The file is placed inside ~/static/docs folder.
The answer I receive is "This page could not be found"
Thank you.
I remember having the same trouble as you a few months back.
While looking at some older code it turns out I used a module called vue-pdf.
After declaring the module as a component like so:
components : {
pdf : PDFViewer,
}
You can just use it in your markup by passing in your link:
<pdf :pdf="brochureDocument"/>
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I look for the best way to hide the code of a solution built with Electron.
Any ideas?
To build the solution with Electron having asar files is not enough. I really need to hide the code so it should not be easy to retrieve.
There are some possibilities. Take a look at https://developers.google.com/closure/library/docs/closurebuilder. It produces a Java' compiled output content (.jar). Then, you can use a jar module for Node.JS in order to access the internal content (like https://www.npmjs.com/package/jarfile).
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am a complete rookie in js libraries. I want to create an offline application in chrome, which will as a result convert an html file into pdf.
I discovered that it could be done by Mozilla's pdf.js? How can I start it? I am trying to understand the tutorial, but I am missing smth.
I have html page and a javascript file. Where and what shuold I import, and how to export this html file (forms, text and images) into pdf.
Thanx
You can't use pdf.js for this. It can only render (some) files. It does not produce PDF, nor does it handle HTML input.