Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rewrite "How to create a webworkers driven multithreading App — Part 1" #1817

Open
tobiu opened this issue Apr 19, 2021 · 0 comments
Open
Assignees
Projects

Comments

@tobiu
Copy link
Collaborator

tobiu commented Apr 19, 2021

The the latest framework & ecosystem enhancements contain several changes and improvements.

The "getting up to speed" blog post needs a new version to reflect them.

Old article (friends link):
https://medium.com/swlh/how-to-create-a-webworkers-driven-multithreading-app-part-1-fa0cc78a4237?source=friends_link&sk=a10ca85002f5f9c3ee8c69f53c79d95f

E.g. the starting point for apps did change:

old:

import MainContainer from './view/MainContainer.mjs';

Neo.onStart =() => {
    Neo.app({
        appPath : 'apps/covid/',
        mainView: MainContainer,
        name    : 'Covid'
    });
};

new:

import MainContainer from './view/MainContainer.mjs';

const onStart = () => Neo.app({
    mainView: MainContainer,
    name    : 'Covid'
});

export {onStart as onStart};

The new article should contain more gists instead of screenshots.

Unfortunately, this is a lot of work, since we need to set up a new repo and match the commits with the new blog post.

Rough estimate: 1 full day.

@tobiu tobiu self-assigned this Apr 19, 2021
@tobiu tobiu added this to To do in Blog Posts via automation Apr 19, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Blog Posts
  
To do
Development

No branches or pull requests

1 participant