-
Book Overview & Buying
-
Table Of Contents
Node.js Blueprints
By :
We have worked on applications in the previous chapters. For this application, we need a Node.js server, which will deliver the necessary HTML, CSS, and JavaScript code. The following is the package.json file, which we are starting from:
{
"name": "TwitterFeedShower",
"description": "Show Twitter feed",
"version": "0.0.1",
"dependencies": {
"twit": "*"
},
"main": "index.js"
}There is only one dependency and that's the module that will connect to Twitter. After you run npm install in the same folder as the package.json file, the module will appear in the newly created node_modules directory.
The next step is to create the folders for the HTML, CSS, and JavaScript and put the necessary files inside these folders. In addition, create the main index.js file that will contain the code of our Node.js server. At the end, our project directory...
Change the font size
Change margin width
Change background colour