Re: Leo Vue

2018-02-01 Thread Joe Orr
Matt, Thanks for the note. I think the project at the least shows the power of the web development system. I'm mostly just adding features that I personally want to use. I think there are plenty more possibilities, and others more knowledgable about Leo will no doubt have some ideas. Joe

Re: Leo Vue

2018-01-22 Thread Matt Wilkie
This is seriously nice work Joe. Thanks for the demo, sharing, and most of all: inspiring! Matt On Mon, Jan 1, 2018 at 3:08 PM, Joe Orr wrote: > The Leo HTML viewer is now Leo Vue - added more Vue integration. > > https://github.com/kaleguy/leovue > > Added: > * Search > *

Re: Leo Vue

2018-01-06 Thread Edward K. Ream
On Sat, Jan 6, 2018 at 4:33 PM, Edward K. Ream wrote: > On Thu, Jan 4, 2018 at 3:59 PM, Chris George wrote: > >> Clean git clone install. >> >> npm install >> >> npm run dev >> >> Success! >> > > ​Glad to hear it. I did the same, and got this cryptic

Re: Leo Vue

2018-01-06 Thread Edward K. Ream
On Thu, Jan 4, 2018 at 3:59 PM, Chris George wrote: > Clean git clone install. > > npm install > > npm run dev > > Success! > ​Glad to hear it. I did the same, and got this cryptic message: npm WARN lifecycle The node binary used for scripts is C:\Program

Re: Leo Vue

2018-01-04 Thread Chris George
Clean git clone install. npm install npm run dev Success! Thanks, Joe. For the record, I am using Chakra Linux. It is a rolling distro with a focus on the latest KDE desktop. Chris On Thu, Jan 4, 2018 at 1:22 PM, Joe Orr wrote: > Was able to duplicate this too. Deleted

Re: Leo Vue

2018-01-04 Thread Joe Orr
Was able to duplicate this too. Deleted the package.lock.json file in the repo and cleaned up the babel stuff and then did another clean install. BUT I first removed the xmldom and xslt4node packages from package.json because this linux box doesn't have java. Then it worked. Try clone and

Re: Leo Vue

2018-01-04 Thread Chris George
Clean git clone install. npm install npm install css-loader Still have 2 compile errors. npm run dev > leo-vue@1.4.0 dev /home/chris/leo-editor/leovue > node build/dev-server.js ERROR Failed to compile with 2 errors1:12:38 PM This dependency was not found: *

Re: Leo Vue

2018-01-04 Thread Chris George
Another clean git clone install. Ran npm install. Now getting 14 errors instead of 13. npm run dev > leo-vue@1.4.0 dev /home/chris/leo-editor/leovue > node build/dev-server.js ERROR Failed to compile with 14 errors 1:02:43 PM These dependencies were not found: *

Re: Leo Vue

2018-01-04 Thread Chris George
Clean install using git clone. Ran npm install without errors. Chris npm run dev > leo-vue@1.4.0 dev /home/chris/leo-editor/leovue > node build/dev-server.js ERROR Failed to compile with 13 errors 12:32:04 PM These dependencies were not found: *

Re: Leo Vue

2018-01-04 Thread Joe Orr
Sorry guys! Just did a clean install on Ubuntu and duplicated this. Was missing the babel preset in package.json I just updated it. You can download and run npm install again or: npm install --save-dev babel-preset-es2015 Also, if you don't have java installed, you will get errors trying on npm

Re: Leo Vue

2018-01-04 Thread Chris George
I am stuck in the same place. I have tried three or four different suggestions from stackoverflow and google. Chris npm run dev > leo-vue@1.4.0 dev /home/chris/leo-editor/leovue > node build/dev-server.js ERROR Failed to compile with 1 errors 11:19:15 AM error in ./src/main.js

Re: Leo Vue

2018-01-04 Thread Kent Tenney
I also see Cannot GET / at localhost:8080 and the following in the terminal where I entered $ npm run dev ERROR Failed to compile with 1 errors 1:08:24 PM error in ./src/main.js Module build failed: Error: Couldn't find preset "es2015" relative to directory "/opt/fetching/leovue" at

Re: Leo Vue

2018-01-03 Thread Chris George
I am on Day 2 of trying to get it to work on my system. It took over a week last time, but I have since installed a different Linux distribution. Today I finally got "npm run dev" to work without errors. Now to figure out what "Cannot GET /"means, :-( Chris On Wed, Jan 3, 2018 at 3:29 PM, Joe

Re: Leo Vue

2018-01-03 Thread Joe Orr
Offray, Thanks for the kind words. About Electron, that is basically just node + browser in a package. I think should be doable to wrap Leo python code in node and have the browser interface, maybe using something like this: https://www.npmjs.com/package/node-python About other formats and

Re: Leo Vue

2018-01-03 Thread Offray Vladimir Luna Cárdenas
Joe, The web interface looks really great. I wonder if this could be the path for the visualization & services 2018 roadmap. The advantage of using a web interface as a rendering interface is that a lot of stuff is there ready to be used. Electron apps [1] has been discussed previously in this

Re: Leo Vue

2018-01-03 Thread Joe Orr
Forgot to add, so far I haven't posted about Leo Vue anywhere but here because it was missing key features. The basic features are now complete so I'll be posting about it elsewhere in a few weeks. In meantime, if anyone has a bug report, that would be very helpful, the program isn't very well

Re: Leo Vue

2018-01-03 Thread Joe Orr
Edward, Thanks for the note, will be adding to the README soon, including an acknowledgement to you for making it all possible. Couple of notes about making a front end for Leo using web technologies: - I can make the tree look exactly like the current Leo interface with basically just CSS,

Re: Leo Vue

2018-01-02 Thread Edward K. Ream
On Mon, Jan 1, 2018 at 5:08 PM, Joe Orr wrote: > The Leo HTML viewer is now Leo Vue - added more Vue integration. > > https://github.com/kaleguy/leovue > ​Many thanks, Joe, for this outstanding work. For those following this link, please make sure you scroll down the page.