Skip to content
This repository has been archived by the owner on Jan 4, 2022. It is now read-only.
/ hapi-blog-cassandra Public archive

playing with Node.js with Hapi framework for web/REST and Cassandra for data

Notifications You must be signed in to change notification settings

kevwil/hapi-blog-cassandra

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

my Hapi/Cassandra demo blog app

Learning Hapi and Cassandra, not making a good blogging app.

Cassandra Schema used:

CREATE KEYSPACE mykeyspace WITH replication = {
  'class': 'SimpleStrategy',
  'replication_factor': '1'
};

USE mykeyspace;

CREATE TABLE posts (
  id int,
  content text,
  date timestamp,
  tags text,
  title text,
  PRIMARY KEY (id)
) WITH
  comment='Blog posts';

CREATE INDEX posts_title ON posts (title);

INSERT INTO posts (id, content, date, tags, title)
VALUES (1, 'hello world', '2014-01-14 10:00-0600', '#demo #revel #go', 'First Post');

Setup / Dependencies

Just run npm install . from the root of the app - this assumes you have Node.js installed and a running Cassandra instance.

LICENSE

Copyright © 2014 Kevin Williams

MIT License

About

playing with Node.js with Hapi framework for web/REST and Cassandra for data

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published