import {fetch} from 'wix-fetch'; function parseRetsXml(xml) { const parser = new DOMParser(); const xmlDoc = parser.parseFromString(xml, "text/xml"); const retsNode = xmlDoc.getElementsByTagName("RETS")[0]; const replyCode = retsNode.getAttribute("ReplyCode"); const replyText = retsNode.getAttribute("ReplyText"); const loginUrl = retsNode.getAttribute("Login"); const searchUrl = retsNode.getAttribute("Search"); return { replyCode, replyText, loginUrl, searchUrl }; } async function searchMLS(xml, query) { const retsInfo = parseRetsXml(xml); const response = await fetch(retsInfo.searchUrl, { method: 'post', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: `search=${encodeURIComponent(query)}` }); const results = await response.json(); return results; } const xml = ' Broker = MemberName = 79190-RETSIDX James T Morrison MetadataVersion = 8.09.00001 MinMetadataVersion = 8.09.00001 User = 547029,NULL,NULL,NULL Login = http://rets.hawaiiinformation.com:6103/rets/login Logout = http://rets.hawaiiinformation.com:6103/rets/logout Search = http://rets.hawaiiinformation.com:6103/rets/search GetMetadata = http://rets.hawaiiinformation.com:6103/rets/getMetadata GetObject = http://rets.hawaiiinformation.com:6103/rets/getObject Balance = 0.01 TimeoutSeconds = 1800 '; const query = 'property type:Residential'; searchMLS(xml, query).then(results => { console.log(results); });
top of page
  • Writer's pictureJames T. Morrison R(S)

Farmers Markets on the Big Island


The Big Island of Hawaii is home to a variety of farm markets that offer locally grown produce, fruits, and other products. These markets provide an opportunity for farmers to sell their products directly to consumers, and for visitors and locals to experience the unique flavors and culture of the island.

One of the most popular farm markets on the Big Island is the Hilo Farmers Market, which takes place every Wednesday and Saturday in the heart of downtown Hilo. This market features a wide variety of local produce, including tropical fruits, vegetables, and herbs. Visitors can also find handmade crafts and artisanal products, as well as live music and food vendors.

Another popular farm market on the Big Island is the Maku'u Farmers Market, which takes place every Sunday in the Pahoa area. This market features a diverse selection of products, including fresh fruits and vegetables, flowers, and baked goods. Visitors can also find locally made crafts, jewelry, and clothing.

The Keauhou Farmers Market is another great place to find locally grown produce and other products on the Big Island. This market takes place every Saturday at the Keauhou Shopping Center and features a wide variety of products, including fruits, vegetables, and flowers. Visitors can also find handmade crafts, jewelry, and clothing.

The Waimea Farmers Market is another great place to find locally grown produce and other products on the Big Island. This market takes place every Saturday and Sunday at the Parker Ranch Center and features a wide variety of products, including fruits, vegetables, and flowers. Visitors can also find handmade crafts, jewelry, and clothing.

Overall, the farm markets on the Big Island of Hawaii provide visitors and locals with the opportunity to experience the unique flavors and culture of the island. These markets feature a wide variety of locally grown produce, fruits, and other products, and offer visitors and locals the chance to connect with farmers and other local artisans. Whether you're looking for fresh fruits and vegetables, handmade crafts, or live music, there is something for everyone at the farm markets on the Big Island of Hawaii.


0 views0 comments

Recent Posts

See All
  • Facebook
  • Instagram
  • Yelp
bottom of page