A Pen by Alan Moore on CodePen.
Created
August 18, 2017 05:10
-
-
Save anonymous/e8a5fb17bb063c4a9d397e0baafe8c3f to your computer and use it in GitHub Desktop.
Checklist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ol> | |
<li>Create Node.js project in Eclipse</li> | |
<li>Create html folder and js folder under it</li> | |
<li>Create index.html in the html folder</li> | |
<li>Create cars.js in the js folder</li> | |
<li>Open index.html file</li> | |
<li>Add a form for your data elements</li> | |
<li>Include a button for submitting data</li> | |
<li>Open app.js</li> | |
<li>Add a function called addXXX() where XXX is your "data type"</li> | |
<li>Using jQuery ($), register your addXXX() function to be called on the 'click' event</li> | |
<li>In your addXXX() function, add logic to POST your data to the server</li> | |
</ol> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment