Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <h2>CFWheels</h2> <p><strong><a href="http://cfwheels.org" rel="nofollow">CFWheels</a></strong> provides CFML developers with a <strong>rapid MVC framework</strong> for increased productivity, organized code, and overall developer happiness.</p> <p>CFWheels is heavily <strong>based on Ruby on Rails</strong>, but it's <strong>not a direct port</strong>, and there are some things that have been changed to better fit the CFML language. The <strong>goal</strong> is to <strong>keep things simple</strong> and this shows in a lot of different areas in CFWheels. </p> <h2>Key CFWheels Concepts</h2> <p><strong>1. Convention Over Configuration</strong></p> <p>Instead of needing to set up tons of configuration variables, CFWheels will just assume you want to do things a certain way by <strong>using default settings</strong>. In fact, you can <strong>start</strong> programming a CFWheels application <strong>without setting any configuration variables</strong> at all!</p> <p><strong>2. Beautiful Code</strong></p> <p><strong>Beautiful</strong> (for lack of a better word) <strong>code</strong> is code that you can scan through and immediately see what it's meant to do. It's code that is never repeated anywhere else. And, most of all, it's code that you'll enjoy writing and will enjoy coming back to 6 months from now.</p> <p><strong>3. Model-View-Controller (MVC)</strong></p> <p>If you've investigated frameworks in the past, then you've probably heard this terminology before. <strong>Model-View-Controller</strong>, or MVC, is a way to structure your code so that it is broken down into three easy-to-manage pieces:</p> <ul> <li><strong>Model</strong>: Just another name for the <strong>representation of data</strong>, usually a database table. </li> <li><strong>View</strong>: What the <strong>user</strong> or their browser <strong>sees and interacts with</strong> (a web page in most cases).</li> <li><strong>Controller</strong>: The <strong>behind-the-scenes</strong> guy that's <strong>coordinating</strong> everything.</li> </ul> <p><strong>4. Object Relational Mapping (ORM)</strong></p> <p>The <strong>Object Relational Mapping</strong>, or ORM, in CFWheels is perhaps the one thing that could potentially speed up your development the most. An <strong>ORM handles mapping objects in memory to how they are stored</strong> in the <strong>database</strong>. It can replace a lot of your query writing with simple methods such as <code>user.save()</code>, <code>blogPost.comments(order="date")</code>, and so on.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload