fork from hello-world-imba

This commit is contained in:
la Fleur 2020-10-31 18:12:41 +01:00
parent a79ab9c6fb
commit ab2cf9ab99
6 changed files with 460 additions and 439 deletions

View File

@ -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

2
dist/index.html vendored
View File

@ -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>

View File

@ -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",

View File

@ -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}

View File

@ -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>

869
yarn.lock

File diff suppressed because it is too large Load Diff