From charlesreid1

Line 13: Line 13:
surprisingly simple...! I guess this is what using node is supposed to be like.
surprisingly simple...! I guess this is what using node is supposed to be like.


==using==
==installing==


<pre>
<pre>
Line 21: Line 21:


npm install
npm install
node app
</pre>
</pre>


==running==


Run the web app using node:
<pre>
node app
</pre>


then visit localhost:3000


==Flags==
==Flags==

Revision as of 16:42, 27 January 2018

initial notes

Using Bootstrap with tables...

bootstrap-table: https://github.com/wenzhixin/bootstrap-table-examples

jsfiddle: https://jsfiddle.net/wenyi/yf0u35jL/4/

bootstrap-table examples: https://github.com/wenzhixin/bootstrap-table-examples

can check this out, do npm install, and do node app, and the whole thing will be available at http://localhost:3000

surprisingly simple...! I guess this is what using node is supposed to be like.

installing

git clone https://github.com/wenzhixin/bootstrap-table-examples.git
cd bootstrap-table-examples
git submodule update --init

npm install

running

Run the web app using node:

node app

then visit localhost:3000

Flags