We'll be building an app that will take user input, save it to a database, and display it on the page. Building a full stack application like this means that you'll write front-end, back-end, and database code. Use this as a starting point and get familiar with all parts of the stack so you can hack a cool site at SDHacks!
Make sure you have the following installed:
-
Atom or other text editor
-
Homebrew: Homebrew is a package manager that makes it easy to install other packages. Install it by running the following command on your terminal:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
-
Node: Install this using Homebrew by running the following command on your terminal:
brew install node
-
SQLite: SQLite is a file-based database. It is commonly used for development and testing and it's the easiest database to get started with. Install this using this command:
brew install sqlite3
To start, make sure you have git installed, and clone this repository
git clone https://github.com/TonyTang2001/sd-hack.git
Go to the directory you cloned your repository in and install the necessary packages:
cd sd-hack
npm install
The repository has a package.json
folder which essentially lists out all the dependencies of your project. The second command will go through all the dependencies and install them. This might take a while, possibly a few minutes. Please wait patiently.
The entry point for our project will be a file called server.js
. To create this file, navigate to the cloned repo in your terminal and enter the following command:
atom server.js
This file will live at the top of your repository and will be where you store server-side code. Copy the following code into server.js
:
var express = require('express');
var app = express();
var bodyParser = require('body-parser');
var knex = require('./db/knex');
app.use(bodyParser.urlencoded({ extended: false }));
app.use(express.static(__dirname + '/public'));
app.get('/ideas', function(req, res) {
knex('ideas').select()
.then(function(data){
res.send(data);
});
});
app.post('/ideas', function(req, res) {
knex('ideas').insert(req.body)
.then(function(id){
res.redirect('/');
});
});
app.listen(3000, function(){
console.log('Listening on Port 3000');
});
Now let's walk through the code:
- Lines 1 and 2: Importing Express and setting up an Express application. Express is a Node.js web application framework.
- Lines 3 and 4: Importing some of the dependencies you installed earlier in order to use them in this file.
body-parser
allows you to read data that the client sends over in a request.knex
allows you to interact with your database in JavaScript. - Line 6: Mounts the BodyParser as middleware, meaning that every request comes into the server has to pass through this module.
- Next block of code is a
get
route. This allows us to get data from the database. This function gets all the data from the database and sends it back to the client to do whatever it wishes with - it can display it or store it. Later on, you'll see where we display it! - Next block of code is a
post
route. This allows us to post (add or update) data to the database. The second line in this block inserts the data in the request body into theideas
table. - Next block of code binds the server to port 3000 on our computer. This means we can access our website at
localhost:3000
when we run it later on.
In the last section, we set up the server which read and wrote data to a database. Now, we're going to set up that database. Navigate to the clone repository in your directory. We are going to create a db/
folder to store the files that make up our database:
mkdir db
cd db/
We'll be using Knex and SQLite for the database. To create a SQLite database, type this into the terminal:
sqlite3 ideas.db
A sqlite>
promt will display, and you can enter for following commands one at a time to create a table named 'Ideas', insert values into it, and display them:
create table ideas(idea varchar(255));
insert into ideas values("Have fun at SDHacks!");
insert into ideas values("Make something Coooooool!");
select * from ideas;
You've just created the database! To exit the sqlite
prompt, hit CTRL + D
.
Create a new file called knex.js
in the db/
folder. Enter the following code and save the file:
var config = require('../knexfile')['development'];
var knex = require('knex')(config);
module.exports = knex;
Navigate back up to the root of your project by typing cd ..
and create a new file called knexfile.js
:
atom knexfile.js
Copy and paste the following code into the file:
module.exports = {
development: {
client: 'sqlite3',
connection: {
filename: 'db/ideas.db'
},
useNullAsDefault: true
}
};
knexfile.js
and db/knex.js
are setting up the Knex instance available to your application so it knows where to find and store the data.
The current repository contains 2 files in the public
folder: index.html
and main.css
. index.html
contains basic html which provides the structure of the interface that the user sees. It has a input field, a button, and an area to display the list from the database. main.css
has styling for the landing page.
Now we're going to add some functionality to the client-side so we can get the data from our database and display it, as well as be able to write data back to the database.
Navigate to your clone repo on your terminal, and create a client.js
file inside of the public/
folder:
cd public
atom client.js
In your client.js
file, write the following code and save:
$(document).ready(function(){
getIdeas();
});
function getIdeas(){
$.get('/ideas', function(data){
console.log(data);
renderData(data);
});
}
function renderData(data){
for (var i = 0; i < data.length; i++) {
$('ul').append('<li>' + data[i].idea + '</li>');
}
}
Walkthrough of the code:
- The first block of code is what gets called as soon as the website loads. In our case, when the website loads, it calls the
getIdeas()
function. - The
getIdeas()
function makes a get request to the/ideas
route (the same as we created onserver.js
in order to get all the data. It then calls therenderData()
function with the data that is returned from the database. - The
renderData()
function goes through all the data passed in as an arugment and appends it (or adds it) to the list on the home page.
Open your index.html
file in the public
folder, and include the client.js
file you just created in order to add the functionality to your static website. Do this by entering the following line of code right before the ending </body>
tag:
<script type="text/javascript" src=/client.js></script>
We're done! To start the app, go back to your terminal on the root directory and type:
node server.js
Now open your browser and navigate to http://localhost:3000/ and you should see the interface of Next Todo.
In case you want to stop the server, simply hit CTRL + C
on your keyboard.
We wish you find this project helpful and have a great experience at SDHacks!
Built by CSES@UCSD, based on this GitHub Repository.