after12am / eisenscript

A programming language designed for generating awesome structures.
https://after12am.github.io/eisenscript-docs/
MIT License
46 stars 5 forks source link

Starter tutorial for Noob #51

Closed enzyme69 closed 7 years ago

enzyme69 commented 7 years ago

In order to use this Eisenscript JS, where is the best way to do it? Is the example included in the ZIP?

I always have issue with JS in regards to "Server" :(

after12am commented 7 years ago

This zip file is the best for now. And the example are under app/tests/ directory. https://github.com/after12am/eisenscript/releases/tag/v1.1.9

I had not thought about who want to uses this library directly. I had ever assumed to use through web app like this. So I was so surprised that there are the people who want to use it directly.

I have to expand the documentation. Please give me a time. I am trying to make source code testable.

And then, I refactor the source code and update the documentation.

after12am commented 7 years ago

I always have issue with JS in regards to "Server" :(

"Server" is not required in this app. Sorry, this means that it does not need to be specially prepared. We start server with command line.

after12am commented 7 years ago

Some command line operation is:

(1) download the source code. https://github.com/after12am/eisenscript/releases/tag/v1.1.9

(2) unzip and change directory to eisenscript-1.1.9 in your terminal.

(3) install npm packages

% npm install

(4) start server

% gulp serve

(5) open http://localhost:9000/tests/index.html in your browser.

When you change the code under app/tests/, browser is automatic reload.

enzyme69 commented 7 years ago

Ok I will give it a try. Thanks!

after12am commented 7 years ago

You are welcome!