SlideShare ist ein Scribd-Unternehmen logo
1 von 18
Downloaden Sie, um offline zu lesen
@ Kampus STMIK Primakara
Jl Tukad Badung 135 Denpasar
BaliJS
Meetup
21.02.16
> document.write(“Hello JS, my name Sudi”)
> console.log(“SUDIGITAL”)
> console.log(“CO-FOUNDER SHOPPING BALI”)
> console.log(“CTO PRENATUNE”)
> console.log(“CTO ALLBENEAR”)
facebook.com/sudieartha
sa@sudigital.com
Who
am I ?
$ curl https://install.meteor.com/ | sh
https://www.meteor.com/install
Installing Meteor
$ meteor create task
task.js # a JavaScript file loaded on both client and server
task.html # an HTML file that defines view templates
task.css # a CSS file to define your app's styles
.meteor
Create
your project
Demo
+ project
+ both
+ client
+ packages
+ public
+ server
+ project
- both
- collections
- lib
- client
- css
- pages
- home.html
- layout.html
- start.html
+ packages
+ public
+ server
+ project
+ both
+ client
+ packages
+ public
- logo
- images
+ resources
- icons
- splash
+ server
- mobile-config.js
- settings.json
Struktur
Direktori / Files
SQL x MongoDB
Tasks = new Mongo.Collection("tasks");
meteor mongo
db.tasks.insert({ text: "Hello world!", createdAt: new Date() });
Template.home.helpers({
name: function () {
return “Sudi”;
}
});
Template.body.events({
"click #button": function () {
console.log(“clicked”);
}
});
Template.home.rendered({
$('#name').addClass('dua');
});
Template
Blaze
<head>
<title>Hello</title>
</head>
<body>
<button id=”button”>Click me</button>
{{> home}}
</body>
<template name="home">
<div id="name" class="satu">Hello, {{name}}</div>
</template>
Packages
atmospherejs.com
$ meteor add twbs:bootstrap
$ meteor add accounts-base accounts-password aldeed:collection2
aldeed:simple-schema kadira:blaze-layout kadira:flow-router
.meteor > packages + twbs:bootstrap // *perline per package
Routing
flow router
$ meteor add kadira:flow-router
.meteor > packages + kadira:flow-router // *perline per package
https://github.com/kadirahq/flow-router
FlowRouter.route('/task/:postId', {
name: 'task',
action: function(params) {
console.log("This is my blog post:", params.postId);
}
});
Method
call
// server
Meteor.methods ({
addTask: function (text) {
Tasks.insert({
ownerId: Meteor.userId(),
text: text,
createdAt: new Date()
});
},
updateTask: function (text) {
// your script here
}
});
// client
Meteor.call (“addTask”, text);
Publish
subscribe
// server
Meteor.publish("tasks", function () {
return Tasks.find();
});
// client
Meteor.subscribe("tasks");
Security
inpublish
$ meteor remove insecure
$ meteor remove autopublish
.meteor > packages - insecure // *perline per package
Deploy
meteor.com
Login ➜ https://meteor.com
http://project.meteor.com
$ meteor deploy project.meteor.com
Demo
Source
github
$ git clone https://github.com/sudieartha/diabook.git
$ cd diabook
$ meteor
Terima kasih
~ Matur Suksma ~

Weitere ähnliche Inhalte

Andere mochten auch

You're wrong. It's about ME!
You're wrong. It's about ME!You're wrong. It's about ME!
You're wrong. It's about ME!Geoff Crane
 
M E A N I N G O F E Q U A L I T Y D R
M E A N I N G  O F  E Q U A L I T Y  D RM E A N I N G  O F  E Q U A L I T Y  D R
M E A N I N G O F E Q U A L I T Y D Rbanothkishan
 
LEÇON 276 – La Parole de Dieu m’est donnée à dire.
LEÇON 276 – La Parole de Dieu m’est donnée à dire.LEÇON 276 – La Parole de Dieu m’est donnée à dire.
LEÇON 276 – La Parole de Dieu m’est donnée à dire.Pierrot Caron
 
COMO MEJORAR LA PRODUCCION DE UNA EMPRESA
COMO MEJORAR LA PRODUCCION DE UNA EMPRESACOMO MEJORAR LA PRODUCCION DE UNA EMPRESA
COMO MEJORAR LA PRODUCCION DE UNA EMPRESAUTPL
 
T H E S E E D S O F H A P P I N E S S D R
T H E  S E E D S  O F  H A P P I N E S S  D RT H E  S E E D S  O F  H A P P I N E S S  D R
T H E S E E D S O F H A P P I N E S S D Rbanothkishan
 
T H R E E P O I N T S A N D N A M A S M A R A N D R
T H R E E  P O I N T S  A N D  N A M A S M A R A N  D RT H R E E  P O I N T S  A N D  N A M A S M A R A N  D R
T H R E E P O I N T S A N D N A M A S M A R A N D Rbanothkishan
 
New Passenger Cabins In Aircraft
New Passenger Cabins In AircraftNew Passenger Cabins In Aircraft
New Passenger Cabins In Aircraftpaumove
 

Andere mochten auch (10)

F R E E D O M D R
F R E E D O M  D RF R E E D O M  D R
F R E E D O M D R
 
You're wrong. It's about ME!
You're wrong. It's about ME!You're wrong. It's about ME!
You're wrong. It's about ME!
 
M E A N I N G O F E Q U A L I T Y D R
M E A N I N G  O F  E Q U A L I T Y  D RM E A N I N G  O F  E Q U A L I T Y  D R
M E A N I N G O F E Q U A L I T Y D R
 
LEÇON 276 – La Parole de Dieu m’est donnée à dire.
LEÇON 276 – La Parole de Dieu m’est donnée à dire.LEÇON 276 – La Parole de Dieu m’est donnée à dire.
LEÇON 276 – La Parole de Dieu m’est donnée à dire.
 
COMO MEJORAR LA PRODUCCION DE UNA EMPRESA
COMO MEJORAR LA PRODUCCION DE UNA EMPRESACOMO MEJORAR LA PRODUCCION DE UNA EMPRESA
COMO MEJORAR LA PRODUCCION DE UNA EMPRESA
 
T H E S E E D S O F H A P P I N E S S D R
T H E  S E E D S  O F  H A P P I N E S S  D RT H E  S E E D S  O F  H A P P I N E S S  D R
T H E S E E D S O F H A P P I N E S S D R
 
tutorial20
tutorial20tutorial20
tutorial20
 
T H R E E P O I N T S A N D N A M A S M A R A N D R
T H R E E  P O I N T S  A N D  N A M A S M A R A N  D RT H R E E  P O I N T S  A N D  N A M A S M A R A N  D R
T H R E E P O I N T S A N D N A M A S M A R A N D R
 
v02-types.en
v02-types.env02-types.en
v02-types.en
 
New Passenger Cabins In Aircraft
New Passenger Cabins In AircraftNew Passenger Cabins In Aircraft
New Passenger Cabins In Aircraft
 

Ähnlich wie BaliJS Meetup #2 - Basic Meteor JS

Pengenalan AngularJS
Pengenalan AngularJSPengenalan AngularJS
Pengenalan AngularJSEdi Santoso
 
inventory mangement project.pdf
inventory mangement project.pdfinventory mangement project.pdf
inventory mangement project.pdfMeenakshiThakur86
 
JavaScript DOM - Dynamic interactive Code
JavaScript DOM - Dynamic interactive CodeJavaScript DOM - Dynamic interactive Code
JavaScript DOM - Dynamic interactive CodeLaurence Svekis ✔
 
From Zero to Cloud in 12 Easy Factors
From Zero to Cloud in 12 Easy FactorsFrom Zero to Cloud in 12 Easy Factors
From Zero to Cloud in 12 Easy FactorsEd King
 
Meteor + Ionic Introduction
Meteor + Ionic IntroductionMeteor + Ionic Introduction
Meteor + Ionic IntroductionLearningTech
 
CodeFest 2014. Пухальский И. — Отзывчивые кроссплатформенные веб-приложения
CodeFest 2014. Пухальский И. — Отзывчивые кроссплатформенные веб-приложенияCodeFest 2014. Пухальский И. — Отзывчивые кроссплатформенные веб-приложения
CodeFest 2014. Пухальский И. — Отзывчивые кроссплатформенные веб-приложенияCodeFest
 
Using RequireJS with CakePHP
Using RequireJS with CakePHPUsing RequireJS with CakePHP
Using RequireJS with CakePHPStephen Young
 
Introduction to Meteor at ChaDev Lunch
Introduction to Meteor at ChaDev LunchIntroduction to Meteor at ChaDev Lunch
Introduction to Meteor at ChaDev LunchAndrew McPherson
 
20190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React201920190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React2019Makoto Mori
 
Javascript MVVM with Vue.JS
Javascript MVVM with Vue.JSJavascript MVVM with Vue.JS
Javascript MVVM with Vue.JSEueung Mulyana
 
Single Page JavaScript WebApps... A Gradle Story
Single Page JavaScript WebApps... A Gradle StorySingle Page JavaScript WebApps... A Gradle Story
Single Page JavaScript WebApps... A Gradle StoryKon Soulianidis
 
Meteor Meet-up San Diego December 2014
Meteor Meet-up San Diego December 2014Meteor Meet-up San Diego December 2014
Meteor Meet-up San Diego December 2014Lou Sacco
 
Dog food conference creating modular webparts with require js in sharepoint
Dog food conference   creating modular webparts with require js in sharepointDog food conference   creating modular webparts with require js in sharepoint
Dog food conference creating modular webparts with require js in sharepointfahey252
 
Google Apps Script: The authentic{ated} playground [2015 Ed.]
Google Apps Script: The authentic{ated} playground [2015 Ed.]Google Apps Script: The authentic{ated} playground [2015 Ed.]
Google Apps Script: The authentic{ated} playground [2015 Ed.]Martin Hawksey
 
Workshop supermodel munich
Workshop supermodel munichWorkshop supermodel munich
Workshop supermodel munichSonja Madsen
 

Ähnlich wie BaliJS Meetup #2 - Basic Meteor JS (20)

Meteor Day Talk
Meteor Day TalkMeteor Day Talk
Meteor Day Talk
 
Pengenalan AngularJS
Pengenalan AngularJSPengenalan AngularJS
Pengenalan AngularJS
 
inventory mangement project.pdf
inventory mangement project.pdfinventory mangement project.pdf
inventory mangement project.pdf
 
JavaScript DOM - Dynamic interactive Code
JavaScript DOM - Dynamic interactive CodeJavaScript DOM - Dynamic interactive Code
JavaScript DOM - Dynamic interactive Code
 
From Zero to Cloud in 12 Easy Factors
From Zero to Cloud in 12 Easy FactorsFrom Zero to Cloud in 12 Easy Factors
From Zero to Cloud in 12 Easy Factors
 
Meteor + Ionic Introduction
Meteor + Ionic IntroductionMeteor + Ionic Introduction
Meteor + Ionic Introduction
 
CodeFest 2014. Пухальский И. — Отзывчивые кроссплатформенные веб-приложения
CodeFest 2014. Пухальский И. — Отзывчивые кроссплатформенные веб-приложенияCodeFest 2014. Пухальский И. — Отзывчивые кроссплатформенные веб-приложения
CodeFest 2014. Пухальский И. — Отзывчивые кроссплатформенные веб-приложения
 
Using RequireJS with CakePHP
Using RequireJS with CakePHPUsing RequireJS with CakePHP
Using RequireJS with CakePHP
 
Introduction to Meteor at ChaDev Lunch
Introduction to Meteor at ChaDev LunchIntroduction to Meteor at ChaDev Lunch
Introduction to Meteor at ChaDev Lunch
 
20190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React201920190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React2019
 
Os mobile
Os mobileOs mobile
Os mobile
 
Os mobile
Os mobileOs mobile
Os mobile
 
Javascript MVVM with Vue.JS
Javascript MVVM with Vue.JSJavascript MVVM with Vue.JS
Javascript MVVM with Vue.JS
 
Single Page JavaScript WebApps... A Gradle Story
Single Page JavaScript WebApps... A Gradle StorySingle Page JavaScript WebApps... A Gradle Story
Single Page JavaScript WebApps... A Gradle Story
 
Meteor Meet-up San Diego December 2014
Meteor Meet-up San Diego December 2014Meteor Meet-up San Diego December 2014
Meteor Meet-up San Diego December 2014
 
Dog food conference creating modular webparts with require js in sharepoint
Dog food conference   creating modular webparts with require js in sharepointDog food conference   creating modular webparts with require js in sharepoint
Dog food conference creating modular webparts with require js in sharepoint
 
Google Apps Script: The authentic{ated} playground [2015 Ed.]
Google Apps Script: The authentic{ated} playground [2015 Ed.]Google Apps Script: The authentic{ated} playground [2015 Ed.]
Google Apps Script: The authentic{ated} playground [2015 Ed.]
 
code-camp-meteor
code-camp-meteorcode-camp-meteor
code-camp-meteor
 
Play!ng with scala
Play!ng with scalaPlay!ng with scala
Play!ng with scala
 
Workshop supermodel munich
Workshop supermodel munichWorkshop supermodel munich
Workshop supermodel munich
 

Kürzlich hochgeladen

%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in sowetomasabamasaba
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park masabamasaba
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionOnePlan Solutions
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...masabamasaba
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrandmasabamasaba
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech studentsHimanshiGarg82
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastPapp Krisztián
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfonteinmasabamasaba
 
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT  - Elevating Productivity in Today's Agile EnvironmentHarnessing ChatGPT  - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT - Elevating Productivity in Today's Agile EnvironmentVictorSzoltysek
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park masabamasaba
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrainmasabamasaba
 

Kürzlich hochgeladen (20)

%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT  - Elevating Productivity in Today's Agile EnvironmentHarnessing ChatGPT  - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 

BaliJS Meetup #2 - Basic Meteor JS

  • 1. @ Kampus STMIK Primakara Jl Tukad Badung 135 Denpasar BaliJS Meetup 21.02.16
  • 2. > document.write(“Hello JS, my name Sudi”) > console.log(“SUDIGITAL”) > console.log(“CO-FOUNDER SHOPPING BALI”) > console.log(“CTO PRENATUNE”) > console.log(“CTO ALLBENEAR”) facebook.com/sudieartha sa@sudigital.com Who am I ?
  • 3.
  • 4. $ curl https://install.meteor.com/ | sh https://www.meteor.com/install Installing Meteor
  • 5. $ meteor create task task.js # a JavaScript file loaded on both client and server task.html # an HTML file that defines view templates task.css # a CSS file to define your app's styles .meteor Create your project
  • 7. + project + both + client + packages + public + server + project - both - collections - lib - client - css - pages - home.html - layout.html - start.html + packages + public + server + project + both + client + packages + public - logo - images + resources - icons - splash + server - mobile-config.js - settings.json Struktur Direktori / Files
  • 8. SQL x MongoDB Tasks = new Mongo.Collection("tasks"); meteor mongo db.tasks.insert({ text: "Hello world!", createdAt: new Date() });
  • 9. Template.home.helpers({ name: function () { return “Sudi”; } }); Template.body.events({ "click #button": function () { console.log(“clicked”); } }); Template.home.rendered({ $('#name').addClass('dua'); }); Template Blaze <head> <title>Hello</title> </head> <body> <button id=”button”>Click me</button> {{> home}} </body> <template name="home"> <div id="name" class="satu">Hello, {{name}}</div> </template>
  • 10. Packages atmospherejs.com $ meteor add twbs:bootstrap $ meteor add accounts-base accounts-password aldeed:collection2 aldeed:simple-schema kadira:blaze-layout kadira:flow-router .meteor > packages + twbs:bootstrap // *perline per package
  • 11. Routing flow router $ meteor add kadira:flow-router .meteor > packages + kadira:flow-router // *perline per package https://github.com/kadirahq/flow-router FlowRouter.route('/task/:postId', { name: 'task', action: function(params) { console.log("This is my blog post:", params.postId); } });
  • 12. Method call // server Meteor.methods ({ addTask: function (text) { Tasks.insert({ ownerId: Meteor.userId(), text: text, createdAt: new Date() }); }, updateTask: function (text) { // your script here } }); // client Meteor.call (“addTask”, text);
  • 13. Publish subscribe // server Meteor.publish("tasks", function () { return Tasks.find(); }); // client Meteor.subscribe("tasks");
  • 14. Security inpublish $ meteor remove insecure $ meteor remove autopublish .meteor > packages - insecure // *perline per package
  • 16. Demo
  • 17. Source github $ git clone https://github.com/sudieartha/diabook.git $ cd diabook $ meteor