17
头图

Hi everyone, this is Kasong.

Today, I would like to introduce you to an honest old man. How frank is it? He announced how much money he made in real time on the tweet.

As of June last year, my brother's annual income was $10w. The point is: my brother has stopped working since January 19th.

Next, let's see how this honest old man can earn 10w dollars a year without going to work.

I don't want to go to work anymore, I want to do what I like

The old man's name is Caleb Porzio and he is a full-stack engineer. Before leaving his job, his annual income was $9w.

As a full-stack engineer who has to code back and forth between the front end and the back end every day, one day in his spare time, Caleb suddenly had an idea:

Can the front-end UI interaction logic also be put in the back-end?

Unexpectedly, the old man felt that this idea might change the trajectory of his life.

事实也确实如此

Livewire to this idea, and the final result is 0613749b6c5a21.

Livewire is a Laravel (a PHP Web ). Let us use a dynamic search box example to show the characteristics of his front and back end shuttle :

Define the search box component:

use Livewire\Component;

class SearchUsers extends Component
{
    public $search = '';

    public function render()
    {
        return view('livewire.search-users', [
            'users' => User::where('username', $this->search)->get(),
        ]);
    }
}

Define the view:

<div>
    <input wire:model="search" type="text" placeholder="Search users..."/>

    <ul>
        @foreach($users as $user)
            <li>{{ $user->username }}</li>
        @endforeach
    </ul>
</div>

Introduce this component anywhere in the application:

<body>
    ...
    @livewire('search-users')
    ...
</body>

When the user clicks on the search box, the user data will be requested in real time. How is this done?

Livewire principle of 0613749b6c5ae1 can be divided into four steps:

  1. When the front-end first screen is rendered, the rendering corresponds to the DOM structure ( SEO friendly)
  2. Interaction occurs, Livewire front-end script makes a request
  3. After the backend requests data, render the new HTML string and return to the frontend
  4. According to the returned HTML , the front-end incrementally updates the view

Relying on this front/rear end shuttle concept, Livewire has obtained 1.2w star .

Relationship with Vue

I have to say that Livewire is very similar to Vue2 . It's no wonder, after all Laravel community and Vue is the venerable ( Laravel founders onto the wave of fame promotion so that was not a big Vue impact with a circle).

Caleb another open source project AlpineJS is a lightweight front-end framework, very similar to Vue1 in implementation.

There are only 15 attributes, 6 characteristics, and 2 methods. Similar to Livewire , they both follow the route get started and powerful.

As of now, there is 1.8w star .

Can you make money from what you like

Sitting on 2 projects with star than 10,000 , 1613749b6c5c7c Caleb made any money? The answer is: no.

Although users often express their hope that he would open Patreon (a website for rewarding artists and creators), this kind of only has a small number of people rewarding you with 5 , which makes 1613749b6c5c98 Caleb feel bad.

Caleb for a long time only has a small amount of paid consultation.

The income brought by open source in 19 years is: 2w knives.

The turning point came at the end of 19 years.

Github Sponsors

Github Sponsors is an open source project investment plan launched by Github

Invest in the open source projects that your daily business uses, so that their team has the energy to better maintain the project, so that your business can benefit from it

After opening Github Sponsors , you can accept different levels of support and provide different services. For example, Caleb accepts:

  • Lowest level-$14/month, for individual developers
  • Livewire 999 per month, for companies that rely heavily on 0613749b6c5dbb, and can get customized services

By June 20, 535 people Caleb 1613749b6c5dd3 at least $14/month. This brings his annual income to $11w.

The income from work was higher than that at the time.

Today, one year later, 1,294 people have provided support Caleb

Obviously, my brother no longer has to worry about income.

Summarize

Kevin Kelly once proposed the theory of 1000 followers

He believes that creators, such as artists, musicians, photographers, craftsmen, actors, animators, designers, video producers, or writers, in other words, anyone who creates works of art only needs to have 1,000 die-hard fans You can live a decent life.

Caleb a good proof of this.

Some people feel that working income at this level is higher.

Others feel that they can still make money standing without going to work and doing what they like. This kind of life is very good.

Welcome to join the human high-quality front-end framework group , and grow with everyone

Which view do you agree with?


卡颂
3.1k 声望16.7k 粉丝