Skip to content

Instantly share code, notes, and snippets.

Created August 18, 2017 05:10
Show Gist options
  • Save anonymous/e8a5fb17bb063c4a9d397e0baafe8c3f to your computer and use it in GitHub Desktop.
Save anonymous/e8a5fb17bb063c4a9d397e0baafe8c3f to your computer and use it in GitHub Desktop.
Checklist
<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