<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Noviyanti R.J</title>
    <description>The latest articles on DEV Community by Noviyanti R.J (@noviyanti_rj_bb0a6e48ab7).</description>
    <link>https://dev.to/noviyanti_rj_bb0a6e48ab7</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4113873%2Fc07a8419-bf03-4d3a-b8f3-89e79d90c404.jpg</url>
      <title>DEV Community: Noviyanti R.J</title>
      <link>https://dev.to/noviyanti_rj_bb0a6e48ab7</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/noviyanti_rj_bb0a6e48ab7"/>
    <language>en</language>
    <item>
      <title>Tencent EdgeOne Makers: My Technical Review and Best Practices for Website Deployment</title>
      <dc:creator>Noviyanti R.J</dc:creator>
      <pubDate>Tue, 08 Sep 2026 00:46:06 +0000</pubDate>
      <link>https://dev.to/noviyanti_rj_bb0a6e48ab7/tencent-edgeone-makers-my-technical-review-and-best-practices-for-website-deployment-53md</link>
      <guid>https://dev.to/noviyanti_rj_bb0a6e48ab7/tencent-edgeone-makers-my-technical-review-and-best-practices-for-website-deployment-53md</guid>
      <description>&lt;p&gt;Creating a website is more than just writing code. After building a project with HTML, CSS, or JavaScript, developers also need to consider how the website performs, how secure it is, and how easily users can access it.&lt;/p&gt;

&lt;p&gt;As a young developer, I think these aspects are important to learn through practice. In this article, I want to share my experience exploring Tencent EdgeOne Makers, along with some technical considerations and best practices that I found useful.&lt;/p&gt;

&lt;p&gt;Getting to Know Tencent EdgeOne Makers&lt;/p&gt;

&lt;p&gt;Tencent EdgeOne Makers provides an interesting environment for developers to experiment with their projects and explore modern web services.&lt;/p&gt;

&lt;p&gt;For beginners, one of its advantages is the opportunity to experience the complete journey of a web project. We can start by creating a project locally, testing its features, and then making it accessible online.&lt;/p&gt;

&lt;p&gt;This process gives developers a better understanding of what happens beyond the coding stage. A website that works on a personal computer still needs to be tested in a real environment before it can provide a good experience for users.&lt;/p&gt;

&lt;p&gt;My Technical Review&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Easy Project Experimentation&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;One thing I like about EdgeOne Makers is the opportunity to experiment. Developers can start with a simple project and gradually improve it.&lt;/p&gt;

&lt;p&gt;This is useful for students and beginner developers because learning does not always have to start with a large or complicated application. A small website can already teach important lessons about structure, configuration, performance, and accessibility.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Performance Matters&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;A website should not only work correctly; it should also feel comfortable to use.&lt;/p&gt;

&lt;p&gt;Large images, unnecessary JavaScript, and unused resources can affect loading times. Because of this, developers should review their project before making it available to users.&lt;/p&gt;

&lt;p&gt;Some simple practices include compressing large images, removing unnecessary files, and keeping the website structure clean.&lt;/p&gt;

&lt;p&gt;Performance is especially important because users may access a website using different devices and network conditions. A website that works well on a developer's computer may not provide the same experience for everyone.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Security Should Be Considered Early&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Another important lesson is security.&lt;/p&gt;

&lt;p&gt;Developers should be careful about the information included in their projects. Passwords, API keys, access tokens, and other private information should never be exposed in publicly accessible source code.&lt;/p&gt;

&lt;p&gt;This is a simple practice, but it is especially important for beginners who are starting to publish their own projects online.&lt;/p&gt;

&lt;p&gt;Learning security from the beginning can help developers build better habits before working on larger applications.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Testing in a Real Environment&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Local testing is useful, but it should not be the only testing stage.&lt;/p&gt;

&lt;p&gt;After a project becomes publicly accessible, developers should check its main features again. Navigation, images, buttons, forms, and other interactive elements should be tested to make sure everything works as expected.&lt;/p&gt;

&lt;p&gt;It is also useful to try the website from different devices or networks. This can reveal problems that may not appear during development.&lt;/p&gt;

&lt;p&gt;I see this as a continuous cycle:&lt;/p&gt;

&lt;p&gt;Build → Test → Publish → Check → Improve&lt;/p&gt;

&lt;p&gt;Best Practices for Young Developers&lt;/p&gt;

&lt;p&gt;Based on what I learned, there are several habits that can help young developers.&lt;/p&gt;

&lt;p&gt;First, keep your project organized from the beginning. A clean project structure makes it easier to understand and maintain the code.&lt;/p&gt;

&lt;p&gt;Second, test every important feature before making the project publicly accessible.&lt;/p&gt;

&lt;p&gt;Third, pay attention to security. Never treat API keys, passwords, or access tokens as normal pieces of source code.&lt;/p&gt;

&lt;p&gt;Fourth, optimize website resources. Small improvements to images and scripts can make a noticeable difference in the user experience.&lt;/p&gt;

&lt;p&gt;Finally, do not stop improving the project after it is online. Use feedback and testing results to find problems and make future versions better.&lt;/p&gt;

&lt;p&gt;Why I Recommend Tencent EdgeOne Makers&lt;/p&gt;

&lt;p&gt;I think Tencent EdgeOne Makers is worth exploring for young developers because it encourages us to look beyond programming itself.&lt;/p&gt;

&lt;p&gt;When learning web development, it is easy to focus only on writing code. However, real projects require us to think about performance, security, accessibility, testing, and the overall user experience.&lt;/p&gt;

&lt;p&gt;Working with EdgeOne Makers can help developers understand these concepts through practical experimentation instead of only learning them from theory.&lt;/p&gt;

&lt;p&gt;There is also an interesting opportunity through the DevHandal 2026 Batch 2 program, which offers a chance to receive 5 million LLM API tokens through EdgeOne Makers. This can be useful for developers who want to explore AI-related ideas and experiment with LLM-based projects.&lt;/p&gt;

&lt;p&gt;Conclusion&lt;/p&gt;

&lt;p&gt;My experience with Tencent EdgeOne Makers showed me that developing a website is a complete process, not simply a matter of writing code.&lt;/p&gt;

&lt;p&gt;A good project should be functional, efficient, secure, and comfortable for users. Platforms such as EdgeOne Makers can provide a practical environment for young developers to experiment with these concepts.&lt;/p&gt;

&lt;p&gt;For anyone who is just starting, my advice is simple: start with a small project, try new things, test your work, learn from mistakes, and keep improving.&lt;/p&gt;

&lt;p&gt;Build it. Test it. Improve it.&lt;/p&gt;

</description>
      <category>tencentedgeone</category>
      <category>edgeonemakers</category>
      <category>codepolitan</category>
      <category>edgeone</category>
    </item>
  </channel>
</rss>
