Skip to content

Commit

Permalink
add package.json and rename static dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyettinger committed Sep 26, 2012
1 parent f0b3fd2 commit bfc6a79
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
config.js
6 changes: 3 additions & 3 deletions index.htm
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<head>
<title>NodeJS Stream using Server Sent Event Stream</title>
<meta charset="utf-8" />
<link rel="shortcut icon" href="/a/i/favicon.png" type="image/png" />
<link href="/a/c/base.css" rel="stylesheet" type="text/css" media="screen" />
<link rel="shortcut icon" href="/static/favicon.png" type="image/png" />
<link href="/static/base.css" rel="stylesheet" type="text/css" media="screen" />
<style>
</style>
</head>
Expand All @@ -24,7 +24,7 @@ <h1>Event Stream</h1>
<small>Copyright &copy; 2011 AP Web Design</small>
</footer>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script src="/a/j/main.js"></script>
<script src="/static/main.js"></script>
</body>
</html>

12 changes: 12 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "nodejs-stream",
"description": "Example event stream using node.js",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node app"
},
"dependencies": {
"json-line-protocol": "*"
}
}
File renamed without changes.
File renamed without changes.

0 comments on commit bfc6a79

Please sign in to comment.