Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

bogart-gen

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bogart-gen

A suite of Rails-style generators for the awesome Bogart framework. Work in progress.

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

bogart-gen

About

Bogart is an awesome framework, but it currently does not come with a CLI. This module provides a CLI to help you get started quicker and easier with Bogart.

Installation

npm install -g bogart-gen

Usage

Generate an app

The easiest way to get started in Rails is now the easiest way to get started in Bogart. Just use

bogart new <appName>

This will generate a folder tree that looks like this:

appName |

|__ lib

| |__ apis

| |__ repositories

| |__ views

| | |__ layout.html

| |

| |__ routers

| | |__ hello.js

| | |__ middleware.js

| | |__ static-content.js

| |

| |__ util.js

|

|__ public

| |__ images

| |__ javascripts

| |__ stylesheets

|

|__ db

| |__ migrations

| |__ schema.sql

|

|__ config

| |__ settings.js

|

|__ Readme.md

|__ app.js

|__ package.json

Generate a repository

Repositories are the database abstraction layer of a Bogart application. Currently, bogart-gen only supports MySQL. Repos generated with bogart-gen will contain a basic CRUD with five functions:

get: // Get an object from the database by it's id

- ```javascript
set:  // Create a new entry in the DB, or update an existing one if the object passed to it has an ID

search: // More flexible than list, and return is compatible with GammaGrid

- ```javascript
del:  // Deletes an entry from the database 

From the CLI, use bogart generate repo <modelName> to generate a repo.

Generate an API

bogart-gen can create Bogart routing files for you so you can get up and running quickly. All API routes generated by bogart-gen will start with '/api/'. These API's will expose all of the repository methods; returns will be in JSON. Generate an API by calling the following from the command line:

bogart g api <modelName>

You'll notice that this uses 'g' instead of 'generate'; this is a convenience provided by bogart-gen, it doesn't matter whether you use 'g' or 'generate'.

Generate a router

With bogart g router <name> [routes], you can generate a router file with a few predefined routes (unless you specify the --lite option). For example, bogart g router post would generate the following file:

  var bogart = require('bogart');

  module.exports = function (router, viewEngine) {
    router = router || bogart.router();

    router.get('/posts', function (req) {
      
    });

    router.get('/post/:id', function (req){

    });

    router.post('/post', function (req) {
      
    })
  }

With bogart g router post --lite the output becomes

var bogart = require('bogart');

module.exports = function (router, viewEngine) {
  router = router || bogart.router();

  //Specify routes here
  /*Example:
  router.get('/post/:id', function (req){

  });
  */
}

FAQs

Package last updated on 29 May 2013

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