DEV Community

S. Amir Mohammad Najafi
S. Amir Mohammad Najafi

Posted on • Originally published at njfamirm.ir on

Lorem-ipsum.ir launched!

Hi everyone 🙌🏻

Recently I was looking for a website that would simply generate lorem ipsum text to use in my project. Suddenly I realized a disaster!

Lorem ipsum website example

A request has been sent to the backend service to generate any lorem text! Unfortunately, this was not the only case, perhaps the best of its kind. At least this website had more features.

After this, I decided to create a lorem ipsum generator website with my friends.

Why?

Many people have built such a website, yes I know!

But the claim of this project is not that we are the best or that we are something new. It has only tried to improve the same old idea, and of course, the main purpose of this project was education.

How?

We need to create a website to generate lorem text and copy them to the user's clipboard. Simply and nothing else!

But our difference from other websites is that all the work is done in the client (user's browser), So we follow the Jamstack architecture, The core principles of Jamstack is pre-rendering, and so website need just serve static files on the CDN, without any server-side code. This means that the website is very fast.

So we use Eleventy to build our website. This is a simple, fast and customizable static site generator(SSG), and using Alwatr's 11ty starter-kit called 12fy(11ty++) for this project, This starter kit uses esbuild to build Typescript/Javascript, postcss to build CSS, and tailwindcss for styling, The combination of different build tools provides a completely optimal output.

Process

After we have decided what we can use for the project, we need to consider our needs.

On the main page, we need a toolbox to generate lorem text, which includes the following:

  • A segmented button for lorem type, paragraph, sentence and keyword.
  • A segmented button for number of lorem text.
  • A texture to display the lorem text.
  • A button to copy the text to the clipboard.

At the bottom of the page, a simple text and image to explain what Ipsum lorem is, this is good for search engine optimization.

And this is the result:

lorem-ipsum.ir page speed result

Next we need to add some JavaScript code to make the toolbox dynamic. This is where the Jamstack architecture differs. We use JSON to store lorem text in them with 3 keys, paragraph, sentence and keyword. which can be seen in this json file. This json bundled in our js code and do not additional request sent for it in client.

Then, write js code to generate the text and place it in the textarea of the toolbox, based on the user input from the segmented buttons. And at the end we add an event listener for the copy button to copy the text to the clipboard. And that's it ⚡️

Result

Is Done 🎉, and this is Page Speed result:

lorem-ipsum.ir page speed result

Check out the live version of this project at lorem-ipsum.ir and enjoy it. Also view the source code of this project on GitHub

Future

The main process of the website is done, in the next step we want to:

  • Add more languages, especially English
  • Add more lorem like text.
  • Lorem random text.
  • and more ...

All task is on Github Project and you can see them. contributing is welcome ❤️.

Thanks

Conclusion

I hope you enjoyed this post, if you have any questions or suggestions, please let me in twitter @njfamirm know.

Top comments (0)