Skip to content

Commit 2e68f4a

Browse files
Merge branch 'edge' of https://github.com/hyperstack-org/hyperstack into edge
2 parents 02a82d4 + a76de32 commit 2e68f4a

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

docs/tutorial/community.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,34 @@
1-
# Community Tutorials
1+
# Community
2+
3+
## Tutorials
24

35
Writing a tutorial is a fantastic way of learning and sharing the knowledge. Over the years many people have written great tutorials and we would like to share them here.
46

57
Not all of the tutorials listed here are current with the latest versions of Rails or Hyperstack, but that does not always matter as long as you know that what you are reading might be outdated, there is still great insight and value.
68

79
+ [HelloWorld Tutorial](https://github.com/fzingg/hyperloop-rails-helloworld)
810
by Frederic ZINGG - an overview of all the core Hyperloop modules. This tutorial is based on Hyperloop (pre Hyperstack) but many of the same concepts are relevant in Hyperstack.
11+
912
+ [Heart Cards](https://github.com/barriehadfield/heart-cards) by Barrie Hadfield - a Rails application using Components and Models and Semantic UI React. The tutorial is incomplete but the readme is comprehensive and it does demonstrate the use of JavaScript components in Hyperstack code.
13+
1014
+ [Hyperloop and Devise](https://github.com/barriehadfield/hyperloop_devise_tutorial) by Barrie Hadfield - a Rails project showing how to integrate Hyperloop and Devise. This tutorial is based on Hyperloop, but is still relevant.
1115

1216
Care to write a tutorial and have it on this list? Please submit a PR against this page and we would love to include it.
17+
18+
## Blogs
19+
20+
Writing a blog is a fantsatic way to expand out community and express your thoughts. Please add anything you write (or you find and think is relevent to this project).
21+
22+
Some recent blogs:
23+
24+
+ [The Exact Same App in Hyperstack part I](https://medium.com/@mitch_23203/the-exact-same-app-in-hyperstack-7f281cef46ca) - A comparison between React and Hyperstack. Hyperstack is a full stack framework. And when we say full stack we mean it. With Hyperstack you build your entire app in Ruby, from HTML layout and event handlers all the way to the database models.
25+
26+
+ [The Exact Same App in Hyperstack part II — Hold on to your socks!)](https://medium.com/@mitch_23203/the-exact-same-app-in-hyperstack-part-ii-5b062074ec20) - Persistance and push notifications in two lines of code!
27+
28+
## Videos
29+
30+
+ [Hyperstack approaching 1.0](https://www.youtube.com/watch?v=GEe7hHIhyUs) - a great overview of all the new functionality in 1.0 by @catmando
31+
32+
## Questions and Answers
33+
34+
Please use [Stack Overflow](https://stackoverflow.com/questions/ask?tags=hyperstack+ruby-on-rails+reactjs+ruby+isomorphic) to post any questions. We monitor the `hyperstack` tag carefully so you should get a reply quickly, but please also post the URL of your question to the [Gitter chat](https://gitter.im/ruby-hyperloop/chat) to get our attention quicker.

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Hyperstack is a Ruby-based DSL and modern web toolkit for building spectacular,
1414
All that means you can write simple front-end code like this:
1515

1616
```ruby
17-
class GoodBooksToRead < Hyperstack::Component
17+
class GoodBooksToRead < HyperComponent
1818
render(UL) do
1919
Book.good_books.each do |book|
2020
LI { "Read #{book.name}" }.on(:click) { display book } if book.available?

0 commit comments

Comments
 (0)