Skip to content

Commit 2f2a4d4

Browse files
committed
🎉 initial commit
0 parents  commit 2f2a4d4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+1005
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
package-lock.json
3+
.development
4+
.production

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<img src='https://raw.githubusercontent.com/nullstack/nullstack/master/nullstack.png' height='60' alt='Nullstack' />
2+
3+
## Welcome to Nullstack
4+
5+
[Read the documentation](https://github.com/nullstack/nullstack)

index.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import 'nullsheet';
2+
3+
import Nullstack from 'nullstack';
4+
import Application from './src/Application';
5+
6+
Nullstack.start(Application);

package.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "nullstack.github.io",
3+
"version": "0.0.1",
4+
"description": "",
5+
"author": "",
6+
"license": "ISC",
7+
"devDependencies": {
8+
"nullstack": "~0.7.0"
9+
},
10+
"scripts": {
11+
"start": "npx webpack --config node_modules/nullstack/webpack.config.js --mode=development --watch",
12+
"build": "npx webpack --config node_modules/nullstack/webpack.config.js --mode=production"
13+
},
14+
"dependencies": {
15+
"nullsheet": "^0.1.1",
16+
"poisonicon": "^0.1.1",
17+
"prism-theme-one-dark": "^1.0.0",
18+
"prismjs": "^1.22.0"
19+
}
20+
}

public/favicon-96x96.png

930 Bytes
Loading

public/hero.svg

Lines changed: 1 addition & 0 deletions
Loading

public/icon-128x128.png

3.27 KB
Loading

public/icon-144x144.png

3.66 KB
Loading

public/icon-152x152.png

3.91 KB
Loading

public/icon-180x180.png

2.05 KB
Loading

0 commit comments

Comments
 (0)