Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

teo.js

Package Overview
Dependencies
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

teo.js

Teo.js is Node.js based web-framework

  • 0.2.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-16.67%
Maintainers
1
Weekly downloads
 
Created
Source

Teo.js

Travis Build Status GitHub issues npm version GitHub license

NPM

Please, meet yet another Node.js based web-framework.

Installing the framework

NPM

npm install teo.js -g

Clone git repo

git clone https://github.com/Antyfive/teo.js.git

Setup

Config

So, how to create config, which will be applied to your app? In home directory of your application, just create config directory, and place inside your *.js file.

Here is default set of currently available properties:
    protocol: "http",                       // as for version 0.1.0, only http is available
    host: "localhost",                      // your host
    port: 3000,                             // port
    delimiters: '{{ }}',                    // template engine delimiters
    compressOutput: false,                  // compress output html
    cache: {
        "static": false,                    // cache static files
        "response": false                   // cache response by url
    },
    appDirs: ["models", "controllers"],     // app's directories to read and collect files inside, on system start
    appFiles: ["app.js"],                    // app's additional files to read and cache on system start
    cookie: {
        keys: ["signed key"]    // default signed key
    },
    session: {
        sessionKeyName: "SID",
        secret: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789',
        lifetime: {
            session: 60 * 60 * 24 * 10 // in seconds, ten days by default
        },
        storageType: "memory" // only memory storage type at the moment
    },
    csrf: {
        keyName: "_csrfToken",
        secret: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'
    }

Also, config is allowed to be splitted into development & production modes. Here is example of config for the test application:

module.exports = {
    "production": {         // production mode
        protocol: "http",
        host: "localhost",
        port: 3000,
        cache: {
            "static": true,     // cache static files
            "response": true    // cache response by url
        }
    },
    "development": {        // development mode
        protocol: "http",
        host: "localhost",
        port: 3100,
        cache: {
            "static": false,
            "response": false
        }
    },
    // common parameters can be set without mode as well. 
    // In this case, parameters below, will be shared among development, and production mode.
    delimiters: '{{ }}',    // save delimiters for both modes
    compressOutput: true    // compress output html in response for both modes
};

Project structure

apps/-|
      | your_app_dir/--|
                       | config/
                       | controllers/
                       | models/
                       | public/
                       | views/
                       | app.js // adittional app.js for your extra logic
node_modules/
app.js

App structure explained

Config

Place your *.js configs inside. Example of config you can see above.

Controllers

Directory is used for controllers.

Lets take a look what we can do inside the controller:

module.exports = function(client, db) {
    console.log( "Index controller was initialized!" );
    // handlers for different methods of request
    /**
     * client.get('/', function( req, res ) {})
     * client.post('/:id', function( req, res ) {})
     * client.put('/:id', function( req, res ) {})
     * client.patch('/:id', function( req, res ) {})
     * client.delete('/:id', function( req, res ) {})
     */
    client.get("/my/url/:id", function(req, res) {      
        // both variants available (it can return context and do res.end as well)
        /*res.writeHead(200, { "Content-Type": "text/plain" });
         res.end( "Hello World" );*/
        // render index.template from views 
        res.render("index", {
            partial: {  // context for index.template
                id: "myid"
            }, 
            title: "Title"   // will be passed to layout.template
        }, function() {});                  // if callback function as third param - no rendering into layout, just compiled view
        // return {};
    });

    client.get("/json/:id", function(req, res, next) {     // send json
        res.json({ id: req.params.id, 'title': "title" });  // send json in your own format
    });

    client.get("/:id/:title", function(req, res, next) {     // next function - e.g. is used for handling async requests
        next({ id: req.params.id, "title": req.params.title });     // without rendering of the partial, data context goes direct to layout
    });

    client.get("/get/news.json", function(req, res) {
        res.send({ id: 1, title: "title" }); // send json in common format
    });

    client.get("/get/error/404", function(req, res) {
        res.send(404);      // send 404 error code
    });
};

Basically, urls parsing is implemented in well-known express style.

res

Let's go through current res mixins.

res.render

(templateName, contextObj, [callback])
res.render("index", { 
    partial: {  // partial context will be passed into index.template
        id: "test"
    }, 
    title: "Title"  // context will be passed to layout.template
}, function(err, output) { // if callback function as third argument - no layout rendering, just partial
    
});                                     

With that said, if callback wasn't passed, framework will do res.end with compiled output (layout with partial).

res.json

(obj)

Ends response with json, in your own format of response. Otherwise, framework will provide standartized format of json response. We will discuss it in next chapters.

res.json({test: "test"}); // Content-Type will be set to "application/json"

res.send

(repsonse) || (errCode, message)

This method commonly used to end your response. If you want to send JSON, you don't need to use JSON.stringify. Just pass object:

res.send({myVal: "1"});

Content-Type will be matched automatically inside.

How Content-Type is set inside res.send method?

It can be detected in next ways:

  • Based on Accept header from request.
  • Based on extension from the url. I.e. /my/action.json extension will be parsed as json, and then MIME type will be matched.
  • If object is passed, in this case application/json will be set.
  • Otherwise, if MIME type is not found, text/html will be set.
Default response format using res.send
// res.send({myVal: "1"}) // it will be sent in next format:
{
    code: code,     // response code
    data: {         // response object
        myVal: "1"
    },
    message: "string" // response message, based on http.STATUS_CODES
}
Sending an error with res.send
res.send(500, "My error message");

Alternately, you can just send your response code. And response text will be matched in http.STATUS_CODES.

res.send(500);

req

Now, let's take a look on req mixins.

req.cookie

Cookies are flavoured with https://github.com/pillarjs/cookies

Feel free to use it's api via req.cookie.

req.session

Currently session have simple api, which consists of two methods:

req.session.set
(key, val)

Setter of value to the storage.

req.session.set("myKey", "myVal");
req.session.get
(key)

Getter of value by key.

var val = req.session.get("myKey");

req.csrf

Basically CSRF is handled out of the box, and everything will be set, and handlerd on the level of framework. But, API is available as well.

req.csrf.genToken
()

Generates token.

req.csrf.getToken
()

Getter of token.

req.csrf.setToken
(key)

Setter of token.

req.csrf.generateHash
()

Generates new hash.

req.params

Object of parsed url params

client.get('/get/:id', function(req, res) {
    cosole.log("My id:" + req.params.id);
});

req.query

Object of parsed GET parameters http://localhost:3100/?myParam=1&myParam2=2 Will parse it to req.query object:

{
    "myParam": "1",
    "myParam2": "2"
}

##Middleware Middleware is implemented in express style. Considering, you have ./apps/your_app/app.js file:

module.exports = function(client) {
    // you'll receive app context here
    this.middleware(function(req, res, next) {
        // examples of next() usage
        // next(403); // ends response with code 403
        // next("Body message"); // ends response with passed message, and 500 code (default)
        // next(403, "Not authorized"); // ends response with code, and error message
        // next(); // everything is fine
    });
}

Attention! Default status code is set to 500.

Logger

  • success(msg)
  • info(msg)
  • warn(msg)
  • error(msg)
  • fatal(msg)
  • log(msg)

Each log message type has it's own output color.

logger.log("Message") outputs in format: [Thu Mar 19 2015 10:11:12 GMT] Success: Message

To be continued...

Keywords

FAQs

Package last updated on 22 Mar 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc