DEV Community

Cover image for myConsole - A JavaScript editor for your phone, in JavaScript.
Victor Ribeiro
Victor Ribeiro

Posted on • Originally published at github.com

myConsole - A JavaScript editor for your phone, in JavaScript.

myConsole

A simple JavaScript editor for you phone, in JavaScipt.

myConsole

A live version of it is hosted here.

Top comments (11)

Collapse
 
joelnet profile image
JavaScript Joel

How do I npm install? :D

Collapse
 
victorqribeiro profile image
Victor Ribeiro

You don't. Just clone it if you want to host your own application, or just go to the live version at victorqribeiro.com/myConsole and add it to your honescreen.

Collapse
 
joelnet profile image
JavaScript Joel

Let me rephrase. How do I import libraries like import S from 'sanctuary'; to play with in sandbox?

Thread Thread
 
victorqribeiro profile image
Victor Ribeiro

You can add an external script, from a CDN or something.

let script = document.createElement('script');

script.src = 'site.com/script.js';

document.body.appendChild(script);

Thread Thread
 
joelnet profile image
JavaScript Joel

Awesome!

Collapse
 
pereiraryan profile image
Ryan Pereira

it says the site can't be reached

Collapse
 
victorqribeiro profile image
Victor Ribeiro

My hosting service was having trouble with some hackers last week so they put up a region block. Where are you in the world?

Collapse
 
pereiraryan profile image
Ryan Pereira

i am from india

Thread Thread
 
victorqribeiro profile image
Victor Ribeiro

Unfortunately you are in one of the blocked regions. I will contact my hosting service first thing in the morning and see if there's something they can do about it. I had similar issues on my last project, at least two other people had open issue on my git hub.

Collapse
 
nektro profile image
Meghan (she/her)

Neat! though the link you posted isn't to the project.

Collapse
 
victorqribeiro profile image
Victor Ribeiro

Fixed!