Get Started with ColdFusion

Share this article

ColdFusion MX is the newest version of an already fantastic product developed by Macromedia, arguably the biggest and best producer of Web software out there. CFMX, as it’s commonly referred to, is built on top of J2EE (Java 2 Enterprise Edition), and as a result, is much more robust that previous versions of ColdFusion. If you are wondering whether or not you should upgrade that old copy of 3.1 you still have lying around, the answer is a resounding “yes!”

If you’re just starting out, you probably have a bunch of questions. “Just what is ColdFusion? Do I need to know Java since it is built on J2EE? Why should I use CFMX instead of ASP or other free scripting language?” Let me answer these questions one at a time:

  1. First of all, ColdFusion MX is a fully functional application server. CFMX will work in conjunction with most popular Web server software available, including Apache, IIS and Deerfield Website. Think of it like this: let’s say you use IIS. In this scenario IIS will act as the batter in a baseball game. The pitcher is a Web user and ColdFusion is the catcher.

    In a typical “game”, the user “pitches” an http request for an html page and the batter (that’s the Web server software) hits the request back to the user. With CFMX, a user “pitches” a request for a ColdFusion file. The Web server steps back and let’s the catcher (ColdFusion) take the CFML request and pass it back to the user. I know this analogy is a bit odd but it usually helps illustrate where CFMX fits into the picture.

    Secondly, ColdFusion is a powerful server-side scripting language. And believe me, it’s as robust as any language out there. This language consists of tags similar to HTML tags, and FUNCTIONS similar to those found in Visual Basic.

  2. Third in this line of questions is “Why should I use CFMX instead of another free scripting language?”. I believe that Ben Forta answered that question with a bang in a recent issue of ColdFusion Developer’s Journal. The short version is “you get what you pay for” and CFMX, while it’s not cheap, does deliver a boat-load of features that would cost you many times the price of CFMX in another “free” language.

  3. Do you need to know Java to use CFMX? No. CFML puts a simple and easy to use language between you and cumbersome Java.

Ok, enough already! Let’s get coding!

I’ve already said that CFML is similar to HTML, but what’s the difference between HTML and CFML? Simple. All ColdFusion tags start with the letters “CF”, allowing you to tell what’s static HTML and what’s ColdFusion code. When ColdFusion reads a CFML page and comes across a ColdFusion tag, it performs the specified task, and returns HTML to the end user. One of the reasons that CFML is so powerful is that it works perfectly with existing HTML. You may embed CF tags into your static HTML and even use ColdFusion to write HTML code for you in many cases. Let’s give it a try.

Lesson 1: The Simple Art of CFML

Let’s start this off with perhaps the most basic and heavily used ColdFusion tag:
<CFOUTPUT></CFOUTPUT>
The “cfoutput” tag allows tells ColdFusion Server to “output” or display data between these tags. By itself, <CFOUTPUT> is useless, but if you combine it with double pound-signs (##), it becomes the basis for the CFML language structure. A completed output tag would appear something like this:

<CFOUTPUT>#VariableName#</CFOUTPUT>

Note: You cannot place cfoutput tags inside other cfoutput tags as a rule. If you do, you will receive an error to tell you that you have invalidly nested cfoutput tags. There is a way and reason to do this, but it goes beyond the scope of this simple tutorial.

Now, let’s produce a simple output. With most programming languages. you always seem to learn a “Hello World” script first, so let’s start with this:

  1. Make sure that you have installed CFMX.

  2. Be sure that ColdFusion MX Service is running.

  3. Create a new folder named Lesson1 under the Webroot of the CFMX Server. C:CFUSIONMXWWWROOTLESSON1

  4. Open Cold Fusion Studio or another of your favorite text editors. I recommend ColdFusion Studio or Homesite for this function. You can also use Dreamweaver MX in code-view. This lesson will not refer to any of the visual CFML in that application.

  5. Create a new blank CFML page. It will look the same as a blank HTML document.

  6. Save this file into your new folder as INDEX.CFM

  7. In between the <BODY></BODY> tags, just as you would in HTML, enter the following code:
    <CFSET MyWorld = 'Hello World'> 
    <CFOUTPUT>#MyWorld#</CFOUTPUT>

  8. View the page by opening your browser and entering your IP address (127.0.0.1 in most cases), followed by port 8500 and the folder Lesson1. It should appear like this:
    http://127.0.0.1:8500/Lesson1/

Great! Now, let’s break this code sample down:

Breaking Down the Code Sample

<CFSET MyWorld = 'Hello World'> creates a variable and value on the page you are viewing. In this specific case we've created a variable named "MyWorld" and assigned it the value "Hello World".  In ColdFusion, as in all programming languages, the variable is equal to its value.  So MyWorld will process as "Hello World".

Whenever you need to use this variable on this template and this template only, you may "call" the variable into action with the above CFOUTPUT block. Once you leave this page, the variable dies and must either be reset with CFSET, or passed via the query string.

The name I chose, "MyWorld", is no magic name... it doesn't have any mystical programming properties at all. You could name your variable "clownshoes" if you felt the desire to do so.

Using the <CFSET> tag as I have above, there are a few basic guidelines that you may wish to follow.

  1. ColdFusion variable names are NOT case sensitive.

  2. ColdFusion variables are typeless. You do not need to declare whether a variable is a string, number, etc.

  3. Consider typing your variable names in "title case" where every word starts with a capital letter, similar to JackPoe or ColdFusion. This just makes it easier to read them. Feel free to adopt any coding practice you see fit, however, you should pick one naming practice and stick to it from here on out.

  4. Never ever use spaces or punctuation in your variable names... ever.

  5. Your variable name should not start with a number.

  6. Make your variable names easy to remember and short (when possible). This makes them easier to remember and quicker to type. Avoid creating variable names like "MyThirdVariableHere". If you have to type that a few dozen times it will get tiring quite fast.

So, to quickly recap and diagram a typical <CFSET> tag:

  <CFSET MyScript = 'Hello Papa Smurf'>  
   The tag being used  
     The variable name  
       The value you are assigning  
to the variable

Now let’s look at the <CFOUTPUT> block:

  <CFOUTPUT>#MyScript#</CFOUTPUT>

You will notice that the variable name is encased in double pound signs or hash marks: ##. If you’ll play along with the analogy, these are like ColdFusion’s “fingerprints”. The ColdFusion Server “dusts” a template, and anywhere it finds these “fingerprints”, it says “Ah ha! I need to do something here.”

In this case, the server receives a request to display the value of the variable named “MyWorld”. So, rather than show you the word “MyWorld”, it will show you the value of the variable, which is “Hello World” in this case.

Let’s do another one — this time we’ll introduce two simple FUNCTIONS.

  • Now() – This function grabs the current date and time from the server, and formats them in a standard time-stamp manner.
  • DateFormat(date, 'mask') – Using this function, we will override the default formatting of the date created with Now(), and tell ColdFusion how we want it formatted.
<CFOUTPUT>#DateFormat(Now(), 'MM/DD/YYYY')#</CFOUTPUT>

This line of code will take the current date and reformat it to something like 04/12/2003. The cool thing is that you can treat this whole glob of code as regular text, like so:

Hello, Today Is <CFOUTPUT>#DateFormat(Now(),'MM/DD/YYYY')#</CFOUTPUT>.

Using this code in this manner, you’ll see:

Hello, Today is 04/12/2003

Add this code to your INDEX.CFM page and try it out. You can also add some font tags or other formatting HTML around this code to achieve your desired effect.

For more uses and formatting options of the DateFormat() function, consult the functions reference section at the end of this article.

You will notice that we nested functions in this code sample.

<CFOUTPUT>#DateFormat(Now(), 'MM/DD/YYYY')#</CFOUTPUT>

ColdFusion allows you to combine or “nest” functions forever. There’s no limit to the number of functions you can combine.

Success with ColdFusion is based on two things:

  1. Know your code. Spend the cash to buy a current CFML Language Reference book and study it. It really is interesting reading.

  2. Practice. As with anything, practice makes perfect.

Note that in some cases you may want to display a pound sign to the user. To do this, you need to “escape the pound sign”. This is done by placing two ## together with no information between them. ColdFusion will interpret this as a single character, not a variable to be processed.

For example, if you use the <CFOUTPUT> tag around a table, and in your HTML tags you try to designate a BGCOLOR="#FFFFCC", ColdFusion will read this as the start of a process. To properly escape this you would enter BGCOLOR="##FFFFCC"

Lesson 2: Using ColdFusion to Display Database Contents

Perhaps the biggest feature of ColdFusion is the amazingly simple way it interacts with databases. CFMX can tie into just about any database you can think of… Oracle, MS SQLServer, MySQL (my personal fave), MS Access, FileMaker, Sybase, Informix (my least favorite!) and more!

To work with CFMX and databases, you need to understand two things. ODBC and SQL.

  • ODBC stands for Open Database Connectivity, and is the basis on which ColdFusion connects to most standard databases.
  • SQL or “See-Quill” is the basic language that’s used to talk to databases. It’s a simple language that can make or break you as a developer. I suggest picking up a copy of Learn SQL in 10 Minutes by Ben Forta. This lesson assumes that you don’t know SQL, though, so I’ll keep it simple.

First things first: we need a database! To save time, I’ve created a very simple database for you to download and use. It requires at least Microsoft Access 2000 — so make sure you have it before you continue.

Now, we need to create a simple ODBC connection. This will require connecting to CFMX Administrator, the control panel that allows you to interact with the ColdFusion Application Server.

  1. Browse to 127.0.0.1:8500/cfide/administrator

  2. Enter your password. You should know this… if you installed the server properly. If you forget it, look at CFFAQ.com for details.

  3. In the left navigation, click the “Data Sources” link.

  4. In the Data Source Name field, enter “CFData” without the quotes.

  5. Open the dropdown list, select Microsoft Access and click ADD.

  6. Browse the server to the database, or type in the path to the file manually.

  7. Click SUBMIT.

  8. If you did everything right, CFMX will display a message saying that the Data source was updated successfully, and you’ll see “OK” next to your source in the list of connected data sources.

Now that you have an ODBC connection, let’s look at the database itself. This database is about as simple as possible, and contains just one table that holds a few records. In the real world, this rarely happens.

If you’re unfamiliar with relational databases, Access is a good place to practice, but, a word to the wise: Access isn’t the best solution to your database needs. If you are looking at low traffic and minor data updates, then you’ll be fine with Access. If you are building a huge database against hundreds of thousands of records and/or expect high usage, consider trying MySQL… and if you can afford them trying SQLServer or Oracle.

Our database in this case contains a few records in the table named INFO. If you don’t know what a database table is, think of it as a big spreadsheet that holds all your data. Inside this table are records comprised of data stored in columns. It’s really quite simple.

This database contains the following columns:

  NAME   
 ADDRESS  
 CITY  
 STATE  
 ZIP  
 PHONE  
 EMAIL  
 NOTES  
 ID

Note that the ID column is your PRIMARY KEY. This is the standard way Access creates a unique identifier for each record in a database.

Now, we’re going to use CFML to suck some of this data out onto the screen.

  1. Create a new folder under the CFMX Webroot, named LESSON2.

  2. In your text editor, create a new file and save it as ALLDATA.CFM

  3. Now, in that file, add this code between the BODY tags:
    <CFQUERY DATASOURCE="CFdata" NAME="getall">   
    SELECT *  
    FROM Info  
    ORDER BY Name ASC  
    </CFQUERY>

  4. Then below this code, add the following HTML:
    <table align="center" border="1">   
    <CFOUTPUT QUERY="getall">  
    <tr>  
     <td>#CURRENTROW#</td>  
     <td>#NAME#</td>  
     <td>#ADDRESS#<BR>#CITY# #STATE#, #ZIP#</td>  
     <td>#PHONE#</td>  
     <td>#EMAIL#</td>  
     <td>#NOTES#</td>  
    </tr>  
    </CFOUTPUT>  
    </table>

  5. Save the page and view it in your browser.

It’s not pretty yet — but it works!

Let’s review what this code does.

The CFQUERY tag is the means by which CFML retrieves data from a database. The attributes we specified, DATASOURCE and NAME, are required by CFMX. The NAME attribute of this tag is specified by you, and can be any word that’s easy to remember. Query names cannot contain spaces or punctuation.

Between the opening and closing CFQUERY tag is the SQL Query itself. This is not CFML, this is SQL, the database language. So just what did we tell the database to do? Let’s look at this in detail.

  • SELECT * This tells the database to get records. The asterisk means all records. So In short, we’ve told the database to SELECT ALL.
  • FROM Info Well, now that the database has been told to get all records, it follows that we need to tell it where to get them from. This line tells the database the name of the TABLE from which we want to select the data. In this case, we want the data from our table, Info.
  • ORDER BY Name ASC This last line is really just gravy. It tells the database that, now that we’ve selected all data from the Info table, we want it organized by the column NAME in ascending alphabetical order. If you wanted to sort the data by descending order, you’d use the abbreviation DESC.

What’s so great about CFML and SQL together, is that you can easily use CFML to augment your query to retrieve exactly the data you need… which brings us to the last part of this lesson.

Lesson 3: Using CFML to Search the Database

In part two, we used CFML to dump the entire database out to the screen. This works fine for a small database, but in real life it’s rarely useful, and can cause some serious performance problems. The easiest solution is to give users the ability to search the database to find exactly what they need. With CFML this is a snap.

  1. Create a new file inside the lesson2 folder named INDEX.CFM

  2. Between the BODY tags of this document, add an HTML form like so:
    <div align="center">    
       
     <form action="search.cfm" method="POST">    
     Search for:<input type="text" name="k">    
    <input type="submit" value="Find!">    
     </form>    
       
    </div>

  3. Now create another new page named SEARCH.CFM

  4. Between the BODY tags we need to deal with validating the submitted form. Add this code:
    <CFIF len(FORM.k) IS 0>    
     Oops!<br>    
     You need to enter some search criteria!<br>    
     <a href="javascript:history.back()">Go back</a>    
    and try again.    
       
     <CFELSE>    
       
    <CFQUERY DATASOURCE="CFdata" NAME="findem">    
    SELECT *    
    FROM Info    
    WHERE Name LIKE '%#FORM.k#%'    
    </CFQUERY>    
       
    <CFIF findem.recordcount IS 0>    
       
     Sorry!<br>    
     Your search for <CFOUTPUT>#FORM.k#</CFOUTPUT>    
    did not return any matches.<br>    
    <form action="search.cfm" method="POST">    
     Search again:<input type="text" name="k">    
    <input type="submit" value="Find!">    
     </form>    
       
       
    <CFELSE>    
    <!--- display your results --->    
       
    <table align="center" border="1">    
    <tr><td colspan="6" align="center">Your search returned    
    <cfoutput>#findem.recordcount#</cfoutput> matches.</td></tr>    
       
    <CFOUTPUT QUERY="findem">    
    <tr>    
     <td>#CURRENTROW#</td>    
     <td>#NAME#</td>    
     <td>#ADDRESS#<BR>#CITY# #STATE#, #ZIP#</td>    
     <td>#PHONE#</td>    
     <td>#EMAIL#</td>    
     <td>#NOTES#</td>    
    </tr>    
    </CFOUTPUT>    
    </table>    
    </CFIF>    
     </CFIF>

  5. Save the pages and try them out in your browser.

Now, let’s review the code. There’s a lot more this time so we’ll take it in chunks.

The INDEX.CFM page contains no tricks. It’s just a simple HTML form. I named the text field “k” to stand for “keywords”…this is just how I do it.

SEARCH.CFM contains a load of CFML you’ve probably never seen before. The first new tag you see is <CFIF>. This is the standard method we use to deal with conditional processing in CFML. This tag has several variations. For full details, check the reference at the end of this article. Basically what this specific use does, is stop users who try to submit for search form without entering any search keywords.

Conditional processing allows a developer to say “if the sky is blue do this. Otherwise do this or this”. This lets you trap events and possible errors, and control them to do exactly what you need.

<CFIF len(FORM.k) IS 0>

The “len(FORM.k) IS 0” portion of the above tag uses the LEN() function to determine the length of the submitted form field contents. In this case, if the length of the form field is zero, we will stop the page from processing.

<CFELSE>

This tag is the “otherwise” condition. So if a user submits proper search criteria, CFMX will continue to process the page.

Let’s take a closer look at that SQL. The first two lines should be familiar, but that last line might be new.

WHERE Name LIKE '%#FORM.k#%'

This is the WHERE CLAUSE in SQL. It’s used to tell the database exactly what data you want selected. The basic syntax is WHERE ColumnName LIKE ‘something’. The “something”, if surrounded by quotes, must be a STRING VALUE — a word or words. Without quotes, you tell the database to match on a number. In this case, we’re letting ColdFusion fill in the blank with the form field value submitted by the user.

Wildcards: as with many languages, SQL allows you to use wildcards to increase the power of a search. In the above code we use the percent symbol to denote a wildcard. Inside the percent signs we place the submitted form variable “k”. Here are some examples:

  • %variable%‘ means CONTAINS the variable value
  • variable%‘ means START WITH the variable value and ends in anything
  • %variable‘ means ENDS WITH the variable value and starts with anything.

The next section of the results code that we need to examine is the next CFIF block. This code checks the RECORDCOUNT of the query, and if it is not zero — meaning the query returns anything larger than the number zero — the page will process. Next is a section that states how many records were found that match. Note the way the variable is called: FINDEM.RECORDCOUNT. This uses the query variable RECORDCOUNT, and only displays it once. If you were to place this code inside a CFOUTPUT that contained the QUERY attribute, the code would repeat for each record found! Not at all useful!

Each ColdFusion query returns three automatic variables. CURRENTROW is the actual numbering of each record. For instance, if your query returns 50 records CURRENTROW would number them 1-50. RECORDCOUNT returns as a number the amount of records your query found. COLUMNLIST returns a comma separated list of the columns in the table searched.

So there you have it! The basics of ColdFusion and CFML. As you can see, it takes some work, but CFML is a simple and effective way to create any kind of Web application you can think of. Keep your eyes peeled for more on CF soon!

Tag and Function Reference
<CFOUTPUT></CFOUTPUT>
Displays the output of a database query, variable or other operation.

Syntax:
  <cfoutput      
 query = "query_name"    
 group = "query_column"    
 groupCaseSensitive = "Yes" or "No"    
 startRow = "start_row"    
 maxRows = "max_rows_output">    
</cfoutput>

<CFSET>
Defines a ColdFusion variable.

Syntax:

<cfset variable_name = expression> 

<CFQUERY></CFQUERY>
Passes queries or SQL statements to a data source.

Syntax:
<cfquery      
 name = "query_name"    
 dataSource = "ds_name"    
 dbtype = "query"    
 username = "username"    
 password = "password"    
 maxRows = "number"    
 blockFactor = "blocksize"    
 timeout = "seconds"    
 cachedAfter = "date"      
 cachedWithin = "timespan"      
   
 Either of the following:    
   debug = "Yes" or "No"    
 or:    
   debug    
   
 SQL statement(s) >    
</cfquery>

<CFIF></CFIF>
Creates simple and compound conditional statements in CFML. Tests an expression, variable, function return value, or string. Used, optionally, with the cfelse and cfelseif tags.

Syntax:
<cfif expression>    
 HTML and CFML tags    
<cfelseif expression>    
 HTML and CFML tags      
<cfelse>    
 HTML and CFML tags    
</cfif>

LEN()
Determines the length of a string or binary object.

Syntax:
Len(string or binary object)

NOW()
Gets the current date and time of the computer running the ColdFusion server. The return value can be passed as a parameter to date functions.

Syntax:
Now()

DATEFORMAT()
Formats a date value. Supports dates in the U.S. date format.

Syntax:
DateFormat("date" [, "mask" ])

1138_reference

Tag specifications taken from ColdFusion MX Language Reference Guide,
Copyright Macromedia, Inc.

Frequently Asked Questions (FAQs) about Getting Started with ColdFusion

What is ColdFusion and why is it used?

ColdFusion is a rapid web application development platform created by J.J. Allaire in 1995. It is used to build rich and dynamic internet applications. The platform is known for its simplicity and speed, allowing developers to create powerful web applications quickly. ColdFusion is used for its integrated database, client and server cache management, simplified file manipulation, and its ability to handle asynchronous events with ease.

How does ColdFusion differ from other programming languages?

Unlike many other programming languages, ColdFusion is tag-based. This means it uses HTML-like tags, which makes it easier for developers who are familiar with HTML and XML. It also has scripting capabilities, allowing for more complex operations. ColdFusion is also known for its excellent integration with databases, making it a popular choice for web applications that require database interaction.

Is ColdFusion easy to learn?

Yes, ColdFusion is considered one of the easiest programming languages to learn, especially for those who are already familiar with HTML. Its tag-based syntax is straightforward and intuitive. Additionally, there are many resources available online, including tutorials and forums, to help beginners get started.

What are some common uses of ColdFusion?

ColdFusion is commonly used to create dynamic web applications. This includes e-commerce sites, content management systems, data-driven websites, and more. It’s also used for intranet applications within businesses and organizations due to its ability to easily integrate with databases and handle complex operations.

How can I install ColdFusion?

ColdFusion can be installed by downloading the installer from the Adobe website. The installation process is straightforward and involves following the prompts provided by the installer. It’s important to note that ColdFusion requires a web server to run, so you’ll need to have one set up before installing ColdFusion.

What are some best practices for writing ColdFusion code?

Some best practices for writing ColdFusion code include using descriptive variable names, commenting your code for clarity, and keeping your code DRY (Don’t Repeat Yourself) by reusing code whenever possible. It’s also recommended to use error handling to catch and handle any errors that may occur.

Can I use ColdFusion with other programming languages?

Yes, ColdFusion can be used in conjunction with other programming languages. It can interact with Java, .NET, and C++ libraries, and can also integrate with JavaScript and AJAX for creating interactive web applications.

Is ColdFusion still relevant today?

Yes, ColdFusion is still relevant today. While it may not be as popular as some other languages, it is still widely used for its ease of use and powerful capabilities. Many businesses and organizations continue to use ColdFusion for their web applications due to its ability to quickly develop robust, scalable applications.

What is the future of ColdFusion?

The future of ColdFusion looks promising. Adobe continues to support and update the platform, with recent versions focusing on modern web development practices and technologies. There is also a strong community of developers who continue to use and advocate for the platform.

Where can I find resources to learn ColdFusion?

There are many resources available online to learn ColdFusion. This includes tutorials, online courses, forums, and documentation. Adobe’s official website is a good starting point, as it provides comprehensive documentation and resources for learning ColdFusion.

Jack PoeJack Poe
View Author

Jack Poe is a web developer, designer, and server administrator for the Air Force. He also works as a freelance developer, and has taught design at Sinclair Community College for over ten years.

Share this article
Read Next
Comparing Docker and Podman: A Guide to Container Management Tools
Comparing Docker and Podman: A Guide to Container Management Tools
Vultr
How to Deploy Flask Applications on Vultr
How to Deploy Flask Applications on Vultr
Vultr
A Comprehensive Guide to Understanding TypeScript Record Type
A Comprehensive Guide to Understanding TypeScript Record Type
Emmanuel Onyeyaforo
Top 7 High-Paying Affiliate Programs for Developers and Content Creators
Top 7 High-Paying Affiliate Programs for Developers and Content Creators
SitePoint Sponsors
How to integrate artificial intelligence into office software: the ONLYOFFICE Docs case study
How to integrate artificial intelligence into office software: the ONLYOFFICE Docs case study
SitePoint Sponsors
Momento Migrates Object Cache as a Service to Ampere Altra
Momento Migrates Object Cache as a Service to Ampere Altra
Dave Neary
Dev Hackathon: Reusable Creativity on Wix Studio
Dev Hackathon: Reusable Creativity on Wix Studio
SitePoint Sponsors
10 Amazing Web Developer Resume Examples for Different Web Dev Specializations
10 Amazing Web Developer Resume Examples for Different Web Dev Specializations
SitePoint Sponsors
How to Build Lightning Fast Surveys with Next.js and SurveyJS
How to Build Lightning Fast Surveys with Next.js and SurveyJS
Gavin Henderson
45 Visual Studio Code Shortcuts for Boosting Your Productivity
45 Visual Studio Code Shortcuts for Boosting Your Productivity
Shahed Nasser
Google Cloud Is the New Way to the Cloud
Google Cloud Is the New Way to the Cloud
SitePoint Sponsors
Understanding Vultr Content Delivery Networks (CDNs)
Understanding Vultr Content Delivery Networks (CDNs)
Vultr
Effortless Content Publishing: A Developer’s Guide to Adobe Experience Manager
Effortless Content Publishing: A Developer’s Guide to Adobe Experience Manager
SitePoint Sponsors
From Idea to Prototype in Minutes: Claude Sonnet 3.5
From Idea to Prototype in Minutes: Claude Sonnet 3.5
Zain Zaidi
Essential Plugins for WordPress Developers: Top Picks for 2024
Essential Plugins for WordPress Developers: Top Picks for 2024
SitePoint Sponsors
WebAssembly vs JavaScript: A Comparison
WebAssembly vs JavaScript: A Comparison
Kaan Güner
The Functional Depth of Docker and Docker Compose
The Functional Depth of Docker and Docker Compose
Vultr
How Top HR Agencies Build Trust Through Logo Designs
How Top HR Agencies Build Trust Through Logo Designs
Evan Brown
Leveraging Progressive Web Apps (PWAs) for Enhanced Mobile User Engagement
Leveraging Progressive Web Apps (PWAs) for Enhanced Mobile User Engagement
SitePoint Sponsors
10 Artificial Intelligence APIs for Developers
10 Artificial Intelligence APIs for Developers
SitePoint Sponsors
The Ultimate Guide to Navigating SQL Server With SQLCMD
The Ultimate Guide to Navigating SQL Server With SQLCMD
Nisarg Upadhyay
Retrieval-augmented Generation: Revolution or Overpromise?
Retrieval-augmented Generation: Revolution or Overpromise?
Kateryna ReshetiloOlexandr Moklyak
How to Deploy Apache Airflow on Vultr Using Anaconda
How to Deploy Apache Airflow on Vultr Using Anaconda
Vultr
Cloud Native: How Ampere Is Improving Nightly Arm64 Builds
Cloud Native: How Ampere Is Improving Nightly Arm64 Builds
Dave NearyAaron Williams
How to Create Content in WordPress with AI
How to Create Content in WordPress with AI
Çağdaş Dağ
A Beginner’s Guide to Setting Up a Project in Laravel
A Beginner’s Guide to Setting Up a Project in Laravel
Claudio Ribeiro
Enhancing DevSecOps Workflows with Generative AI: A Comprehensive Guide
Enhancing DevSecOps Workflows with Generative AI: A Comprehensive Guide
Gitlab
Creating Fluid Typography with the CSS clamp() Function
Creating Fluid Typography with the CSS clamp() Function
Daine Mawer
Comparing Full Stack and Headless CMS Platforms
Comparing Full Stack and Headless CMS Platforms
Vultr
7 Easy Ways to Make a Magento 2 Website Faster
7 Easy Ways to Make a Magento 2 Website Faster
Konstantin Gerasimov
Powerful React Form Builders to Consider in 2024
Powerful React Form Builders to Consider in 2024
Femi Akinyemi
Quick Tip: How to Animate Text Gradients and Patterns in CSS
Quick Tip: How to Animate Text Gradients and Patterns in CSS
Ralph Mason
Sending Email Using Node.js
Sending Email Using Node.js
Craig Buckler
Creating a Navbar in React
Creating a Navbar in React
Vidura Senevirathne
A Complete Guide to CSS Logical Properties, with Cheat Sheet
A Complete Guide to CSS Logical Properties, with Cheat Sheet
Ralph Mason
Using JSON Web Tokens with Node.js
Using JSON Web Tokens with Node.js
Lakindu Hewawasam
How to Build a Simple Web Server with Node.js
How to Build a Simple Web Server with Node.js
Chameera Dulanga
Building a Digital Fortress: How to Strengthen DNS Against DDoS Attacks?
Building a Digital Fortress: How to Strengthen DNS Against DDoS Attacks?
Beloslava Petrova
Crafting Interactive Scatter Plots with Plotly
Crafting Interactive Scatter Plots with Plotly
Binara Prabhanga
GenAI: How to Reduce Cost with Prompt Compression Techniques
GenAI: How to Reduce Cost with Prompt Compression Techniques
Suvoraj Biswas
How to Use jQuery’s ajax() Function for Asynchronous HTTP Requests
How to Use jQuery’s ajax() Function for Asynchronous HTTP Requests
Aurelio De RosaMaria Antonietta Perna
Quick Tip: How to Align Column Rows with CSS Subgrid
Quick Tip: How to Align Column Rows with CSS Subgrid
Ralph Mason
15 Top Web Design Tools & Resources To Try in 2024
15 Top Web Design Tools & Resources To Try in 2024
SitePoint Sponsors
7 Simple Rules for Better Data Visualization
7 Simple Rules for Better Data Visualization
Mariia Merkulova
Cloudways Autonomous: Fully-Managed Scalable WordPress Hosting
Cloudways Autonomous: Fully-Managed Scalable WordPress Hosting
SitePoint Team
Best Programming Language for AI
Best Programming Language for AI
Lucero del Alba
Quick Tip: How to Add Gradient Effects and Patterns to Text
Quick Tip: How to Add Gradient Effects and Patterns to Text
Ralph Mason
Logging Made Easy: A Beginner’s Guide to Winston in Node.js
Logging Made Easy: A Beginner’s Guide to Winston in Node.js
Vultr
How to Optimize Website Content for Featured Snippets
How to Optimize Website Content for Featured Snippets
Dipen Visavadiya
Psychology and UX: Decoding the Science Behind User Clicks
Psychology and UX: Decoding the Science Behind User Clicks
Tanya Kumari
Build a Full-stack App with Node.js and htmx
Build a Full-stack App with Node.js and htmx
James Hibbard
Digital Transformation with AI: The Benefits and Challenges
Digital Transformation with AI: The Benefits and Challenges
Priyanka Prajapat
Quick Tip: Creating a Date Picker in React
Quick Tip: Creating a Date Picker in React
Dianne Pena
How to Create Interactive Animations Using React Spring
How to Create Interactive Animations Using React Spring
Yemi Ojedapo
10 Reasons to Love Google Docs
10 Reasons to Love Google Docs
Joshua KrausZain Zaidi
How to Use Magento 2 for International Ecommerce Success
How to Use Magento 2 for International Ecommerce Success
Mitul Patel
5 Exciting New JavaScript Features in 2024
5 Exciting New JavaScript Features in 2024
Olivia GibsonDarren Jones
Tools and Strategies for Efficient Web Project Management
Tools and Strategies for Efficient Web Project Management
Juliet Ofoegbu
Choosing the Best WordPress CRM Plugin for Your Business
Choosing the Best WordPress CRM Plugin for Your Business
Neve Wilkinson
ChatGPT Plugins for Marketing Success
ChatGPT Plugins for Marketing Success
Neil Jordan
Managing Static Files in Django: A Comprehensive Guide
Managing Static Files in Django: A Comprehensive Guide
Kabaki Antony
The Ultimate Guide to Choosing the Best React Website Builder
The Ultimate Guide to Choosing the Best React Website Builder
Dianne Pena
Exploring the Creative Power of CSS Filters and Blending
Exploring the Creative Power of CSS Filters and Blending
Joan Ayebola
How to Use WebSockets in Node.js to Create Real-time Apps
How to Use WebSockets in Node.js to Create Real-time Apps
Craig Buckler
Best Node.js Framework Choices for Modern App Development
Best Node.js Framework Choices for Modern App Development
Dianne Pena
SaaS Boilerplates: What They Are, And 10 of the Best
SaaS Boilerplates: What They Are, And 10 of the Best
Zain Zaidi
Understanding Cookies and Sessions in React
Understanding Cookies and Sessions in React
Blessing Ene Anyebe
Enhanced Internationalization (i18n) in Next.js 14
Enhanced Internationalization (i18n) in Next.js 14
Emmanuel Onyeyaforo
Essential React Native Performance Tips and Tricks
Essential React Native Performance Tips and Tricks
Shaik Mukthahar
How to Use Server-sent Events in Node.js
How to Use Server-sent Events in Node.js
Craig Buckler
Five Simple Ways to Boost a WooCommerce Site’s Performance
Five Simple Ways to Boost a WooCommerce Site’s Performance
Palash Ghosh
Elevate Your Online Store with Top WooCommerce Plugins
Elevate Your Online Store with Top WooCommerce Plugins
Dianne Pena
Unleash Your Website’s Potential: Top 5 SEO Tools of 2024
Unleash Your Website’s Potential: Top 5 SEO Tools of 2024
Dianne Pena
How to Build a Chat Interface using Gradio & Vultr Cloud GPU
How to Build a Chat Interface using Gradio & Vultr Cloud GPU
Vultr
Enhance Your React Apps with ShadCn Utilities and Components
Enhance Your React Apps with ShadCn Utilities and Components
David Jaja
10 Best Create React App Alternatives for Different Use Cases
10 Best Create React App Alternatives for Different Use Cases
Zain Zaidi
Control Lazy Load, Infinite Scroll and Animations in React
Control Lazy Load, Infinite Scroll and Animations in React
Blessing Ene Anyebe
Building a Research Assistant Tool with AI and JavaScript
Building a Research Assistant Tool with AI and JavaScript
Mahmud Adeleye
Understanding React useEffect
Understanding React useEffect
Dianne Pena
Web Design Trends to Watch in 2024
Web Design Trends to Watch in 2024
Juliet Ofoegbu
Building a 3D Card Flip Animation with CSS Houdini
Building a 3D Card Flip Animation with CSS Houdini
Fred Zugs
How to Use ChatGPT in an Unavailable Country
How to Use ChatGPT in an Unavailable Country
Dianne Pena
An Introduction to Node.js Multithreading
An Introduction to Node.js Multithreading
Craig Buckler
How to Boost WordPress Security and Protect Your SEO Ranking
How to Boost WordPress Security and Protect Your SEO Ranking
Jaya Iyer
Understanding How ChatGPT Maintains Context
Understanding How ChatGPT Maintains Context
Dianne Pena
Building Interactive Data Visualizations with D3.js and React
Building Interactive Data Visualizations with D3.js and React
Oluwabusayo Jacobs
JavaScript vs Python: Which One Should You Learn First?
JavaScript vs Python: Which One Should You Learn First?
Olivia GibsonDarren Jones
13 Best Books, Courses and Communities for Learning React
13 Best Books, Courses and Communities for Learning React
Zain Zaidi
5 jQuery.each() Function Examples
5 jQuery.each() Function Examples
Florian RapplJames Hibbard
Implementing User Authentication in React Apps with Appwrite
Implementing User Authentication in React Apps with Appwrite
Yemi Ojedapo
AI-Powered Search Engine With Milvus Vector Database on Vultr
AI-Powered Search Engine With Milvus Vector Database on Vultr
Vultr
Understanding Signals in Django
Understanding Signals in Django
Kabaki Antony
Why React Icons May Be the Only Icon Library You Need
Why React Icons May Be the Only Icon Library You Need
Zain Zaidi
View Transitions in Astro
View Transitions in Astro
Tamas Piros
Getting Started with Content Collections in Astro
Getting Started with Content Collections in Astro
Tamas Piros
What Does the Java Virtual Machine Do All Day?
What Does the Java Virtual Machine Do All Day?
Peter Kessler
Become a Freelance Web Developer on Fiverr: Ultimate Guide
Become a Freelance Web Developer on Fiverr: Ultimate Guide
Mayank Singh
Layouts in Astro
Layouts in Astro
Tamas Piros
.NET 8: Blazor Render Modes Explained
.NET 8: Blazor Render Modes Explained
Peter De Tender
Mastering Node CSV
Mastering Node CSV
Dianne Pena
Get the freshest news and resources for developers, designers and digital creators in your inbox each week
Loading form