fork from hello-world-imba
This commit is contained in:
parent
a79ab9c6fb
commit
ab2cf9ab99
10
README.md
10
README.md
|
@ -1,13 +1,12 @@
|
||||||
# Hello World Imba
|
# basic App in Imba
|
||||||
|
|
||||||
Tiny template for testing out Imba using [CSS modules][0]. Click [Use this
|
Tiny template for testing out Imba using [CSS modules][0].
|
||||||
template][1] on GitHub to create a new repository with this template.
|
|
||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
||||||
```
|
```
|
||||||
git clone https://github.com/imba/hello-world-imba
|
git clone https://dev.sum7.eu/lafleur/basic-imba
|
||||||
cd hello-world-imba
|
cd basic-imba
|
||||||
yarn # npm install
|
yarn # npm install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -28,4 +27,3 @@ yarn run dev # npm run dev
|
||||||
```
|
```
|
||||||
|
|
||||||
[0]: https://github.com/css-modules/css-modules
|
[0]: https://github.com/css-modules/css-modules
|
||||||
[1]: https://github.com/imba/hello-world-imba/generate
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>Hello World</title>
|
<title>basic</title>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
14
package.json
14
package.json
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "hello-world-imba",
|
"name": "basic-imba",
|
||||||
"description": "Hello World for Imba",
|
"description": "basic App using Imba",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"imba"
|
"imba"
|
||||||
],
|
],
|
||||||
"author": "Sindre Aarsaether",
|
"author": "la Fleur",
|
||||||
"bugs": "https://github.com/somebee/hello-world-imba/issues",
|
"bugs": "https://dev.sum7.eu/lafleur/basic-imba/issues",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6.0.0"
|
"node": ">=6.0.0"
|
||||||
|
@ -18,12 +18,12 @@
|
||||||
},
|
},
|
||||||
"files": [],
|
"files": [],
|
||||||
"directories": {},
|
"directories": {},
|
||||||
"homepage": "http://imba.io",
|
"homepage": "https://dev.sum7.eu/lafleur/basic-imba",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/imba/hello-world-imba.git"
|
"url": "https://dev.sum7.eu/lafleur/basic-imba"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "GNU",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"css-loader": "^3.6.0",
|
"css-loader": "^3.6.0",
|
||||||
"express": "^4.17.1",
|
"express": "^4.17.1",
|
||||||
|
|
|
@ -4,7 +4,7 @@ import { List } from './item-list'
|
||||||
var store = {
|
var store = {
|
||||||
title: ""
|
title: ""
|
||||||
items: [
|
items: [
|
||||||
{title: "git clone hello-world-imba", completed: false}
|
{title: "git clone basic-imba", completed: false}
|
||||||
{title: "npm install", completed: false}
|
{title: "npm install", completed: false}
|
||||||
{title: "npm run dev", completed: false}
|
{title: "npm run dev", completed: false}
|
||||||
{title: "play around", completed: false}
|
{title: "play around", completed: false}
|
||||||
|
|
|
@ -6,7 +6,7 @@ server.use(express.static('./dist'))
|
||||||
server.get '/' do |req,res|
|
server.get '/' do |req,res|
|
||||||
var html = <html>
|
var html = <html>
|
||||||
<head>
|
<head>
|
||||||
<title> "Imba - Hello World"
|
<title> "Imba - basic App"
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<link rel="stylesheet" href="/index.css" media="screen">
|
<link rel="stylesheet" href="/index.css" media="screen">
|
||||||
<body>
|
<body>
|
||||||
|
|
Loading…
Reference in New Issue