npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bold

v0.1.32

Published

A Node Framework with sockets

Downloads

122

Readme

NPM version NPM downloads MIT License Build Status

Bold

Bold is a framework using a NodeJS + Socket.IO/Redis stack.

Get the source from GitHub or install via NPM

npm install bold --save

Note: this will take a while. We include all the dependencies to run bold.

Notice::

0.1.x will be the last support for Node 0.12 or less. Current supports Node 2.0 >

Version

0.1.18

Command Line Tool

Install:

sudo npm install bold -g

Create example server:

bold create bold-server && cd bold-server

How to use

We recommend starting off using our command line tool. It will setup the bold server for you. If you want to setup a server manually, follow this guide.

In a server.js file at your project root, use the following to set up a bold server:

var Bold = require('../lib/bold.js');

Bold.start(function(port) { console.log('My server started on port '+ port); });

Config Folder:

Location: config

Under your app directory, create a folder called 'config'. In there, you can have the following files:

  1. config.js (required)
  2. routes.js

Config.js

Location: config/config.js

Under config.js, you can return the following options:

  1. appName: Name of your app.
  2. server: Name of the server that the current code is running on.
  3. port: What port to run server on. Defaults to process.env.PORT and then to 4050.
  4. useStaticServer: Wether to allow the server to act as a static server for a specified folder. Used with viewEngine, viewDirectory, and publicDirectory. Defaults to true.
  5. favicon: Location of your favicon. Defaults to 'public'.
  6. viewEngine: Which view engine to use. Example: jade, html, handlebars, etc.
  7. viewDirectory: Which directory to be used to serve views, if using dynamic views.
  8. publicDirectory: Which directory to be used as your 'static folder.'
  9. ssl: An object of options to use ssl on your node server.
  10. ssl.key: Location of key file to use.
  11. ssl.cert: Location of the cert file to use.
  12. ssl.port: Port to have your node.js https server run on.
  13. sslRedirect: Redirect http to https.
  14. dontUseRedisTTL: do not use a ttl for redis.
  15. ttl: Time in seconds until redis expires documents. Defaults to 3600.

Note: each of these configs can be a string, or a function that expects a string to be returned.

Routes.js

Location: config/routes.js

Allows you to add custom routes. We pass the express 'app' object to this function so you can configure custom routes.

//Location:
//config/routes.js

module.exports = function(app) {
  app.get('/users', function(req, res, next) {
    res.send([{
      firstName: 'Alex',
      lastName: 'Price'
    }]);
  });
};

APIs

Location: api/

Allows you to create APIs that can be accessed by both socket.io and by RESTful requests.

Say I want to call the function 'getUsers' under 'user'. I can request the API either using http://localhost:4050/api/user/getUser or by using socket.io on the client:

socket.emit('api', 'user', 'getUser', {
  testData: 'I Am Groot'
}, function(err, data) {
  if (err) {
    console.log(err);
  } else {
    console.log(data);
  }
});

Example Api:

//Location:
//api/user.js

var sampleUser = {
  name: 'Alex Price'
};

module.exports = {
  getUser: {
    middleware: ['middleware/auth.testCredentials'],
    api: function(data, fn, session, extras) {
      return fn(null, sampleUser);
    },
    afterware: ['middleware/auth.user.logUser']
  }
};

Extras has the following properties:

  • mongoose - access to the mongoose variable.
  • io
  • socket - the particular socket connection, if available
  • connectionType - either socket or http.
  • fileName - the file that the API is being hit by.
  • req - if available
  • res - if available
  • method - the method that is being called.
  • ipAddress
  • hostname
Sessions

Sessions use redis for consistency across Node instances and for persistance. To read a session, just use standard dot notation. To write to the session, just write to the session object, and then run session.save():

//Location:
//api/user.js

module.exports = {
  updateUser: {
    middleware: ['middleware/auth.testCredentials'],
    api: function(data, fn, session, extras) {
      var user = session.user;

      session.user.firstName = 'Alex';

      session.save();
      return fn(null, true);
    },
    afterware: ['middleware/auth.user.logUser']
  }
};
Middleware/Afterware

All API's support both middleware and afterware. To add middleware, add the key 'middleware' to your api, and supply it an array of strings that reference other API functions, as seen in the example above.

Afterware can be added to any api by providing the key 'afterware' and supplying it an array of strings that reference other API functions. Afterware will run after an api is finished, but dose not have access to the 'fn' function.

Middleware/Afterware example:

//Location:
//api/middleware/auth.js

module.exports = {
  testCredentials: function(data, fn, session, extras, next) {
    if (data.credentials == 'true') {
      return next();
    } else {
      return fn('You sent this bad fake credentials. That will not work.', null);
    }
  },
  user: {
    logUser: function(data, session, extras, next) {
      //Do something with user data like log user info into DB 
    }
  }
};
next()

Next allows you to run the next functon in the iteration. If you want to skip all middleware/afterware run: next({ finish: true })

Mongoose Schema

Location: config/schema/

Allows you to create a mongoose schema that can be used throughout your app. Configure your file to look like this:

Example:

//Location:
//config/model/user.js

var mongoose = require('mongoose');
var Connection = require('bold').Connection;
var Schema = mongoose.Schema;

module.exports = Connection.model('User', new Schema({
  firstName: String,
  lastName: String,
  fullName: String
}));

Note: You must use bold.Connection in order to access the same mongoose instance across your bold server.

To access your model in other parts of your app, require 'bold' and read on the Model location

//Location:
//api/user

var Bold = require('bold');
var Models = Bold.Models;

module.exports = {
  getUser: {
    api: function(data, fn, session, extras) {
      Models.User.findById(data._id, function(err, user) {
        fn(null, user);
      });
    }
  }
};

Note: Mongoose is optional. If you want to use mongoose, you must provide a mongoUri under config/config.js.