<?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: Giancarlos Isasi</title>
    <description>The latest articles on DEV Community by Giancarlos Isasi (@nexuszgt).</description>
    <link>https://dev.to/nexuszgt</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F74471%2F7ad08705-c289-4c9f-813f-06df522053c8.png</url>
      <title>DEV Community: Giancarlos Isasi</title>
      <link>https://dev.to/nexuszgt</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nexuszgt"/>
    <language>en</language>
    <item>
      <title>Introducing react-apollo-generator</title>
      <dc:creator>Giancarlos Isasi</dc:creator>
      <pubDate>Wed, 19 Feb 2020 23:43:47 +0000</pubDate>
      <link>https://dev.to/nexuszgt/introducing-react-apollo-generator-59n5</link>
      <guid>https://dev.to/nexuszgt/introducing-react-apollo-generator-59n5</guid>
      <description>&lt;p&gt;I just created a little package to generate react apollo hooks with graphql-codegen. It has support for multiples graphql schemas too. 👺&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/GiancarlosIO/react-apollo-generator"&gt;https://github.com/GiancarlosIO/react-apollo-generator&lt;/a&gt;&lt;/p&gt;

</description>
      <category>react</category>
      <category>typescript</category>
      <category>apollo</category>
    </item>
    <item>
      <title>webpack-nexus 🐨 - my little first open source project</title>
      <dc:creator>Giancarlos Isasi</dc:creator>
      <pubDate>Sat, 12 Oct 2019 22:17:24 +0000</pubDate>
      <link>https://dev.to/nexuszgt/webpack-nexus-my-little-first-open-source-project-1kd5</link>
      <guid>https://dev.to/nexuszgt/webpack-nexus-my-little-first-open-source-project-1kd5</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/GiancarlosIO/webpack-nexus"&gt;https://github.com/GiancarlosIO/webpack-nexus&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;One year ago I was wondering how things like create-react-app are being created.&lt;br&gt;
In may of this year I decided I should try to create my own "create-react-app" to learn about cli's.&lt;/p&gt;

&lt;p&gt;So, after 2 months of research and development I have finished my own cli and I want to share this with you.&lt;/p&gt;

&lt;p&gt;Webpack-nexus 🐨:&lt;br&gt;
&lt;a href="https://github.com/GiancarlosIO/webpack-nexus"&gt;https://github.com/GiancarlosIO/webpack-nexus&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why I created my own cli?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;I created this because I want to learn how to build something like create-react-app/next.js. I'm not trying to compete with the big current cli's/boilerplates&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I know it's not better than create-react-app o next.js but I made this to supply my custom requirements about webpack and vscode configurations. Maybe it will do the same for you.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Webpack: Dev and Prod configurations inspired by the awesome work of React - boilerplate 🔨&lt;/li&gt;
&lt;li&gt;Babel: ES6/ES7, jsx and more plugins configured for dev and production mode. ⚛️&lt;/li&gt;
&lt;li&gt;Styling with styled-components 💅&lt;/li&gt;
&lt;li&gt;Typing with typescript and eslint ✔️&lt;/li&gt;
&lt;li&gt;Auto formatter with prettier 🔄&lt;/li&gt;
&lt;li&gt;vscode configured to work with eslint + typescript + prettier 💙&lt;/li&gt;
&lt;li&gt;&lt;em&gt;React-apollo: coming soon...&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Jest: coming soon...&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Husky + lint-stagged: coming soon...&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;webpack-nexus.js: file to configure/overrite the actual webpack/babel configuration, coming soon...&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Setup/configurations for atom and sublime, coming soon...&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;What is the difference with other projects like create-react-app/react-boilerplate/next.js?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It has a lot of specific configurations used in all of my side-projects, so maybe you are good using CRA or NEXTJS.&lt;/p&gt;

&lt;p&gt;I tested create-react-app and I think it is awesome but I don't like the way it works.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You need to eject to add your own webpack or babel plugins.&lt;/li&gt;
&lt;li&gt;You need to eject to configure/add prettier/eslint rules.&lt;/li&gt;
&lt;li&gt;If you have lint errors it will throw an error. Some times I just want to test some egde cases. webpack-nexus doesn't throw an error because eslint is not configured inside webpack, it is just used to lint the files in vscode.&lt;/li&gt;
&lt;li&gt;It doesn't have support for multi-entries. It can be configured for that, but again, you need to eject.&lt;/li&gt;
&lt;li&gt;It has no styled-components installed.&lt;/li&gt;
&lt;li&gt;It has no apollo graphql configured. Graphql is what I always use in my projects.&lt;/li&gt;
&lt;li&gt;It has no react-hot-loader configured.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;react-boilerplate? I really like that, but I just wanted a simple cli to scaffold my projects and not to clone a repository every time.&lt;/p&gt;

&lt;p&gt;And... It is not comparable with next.js because it is not a react framework... but maybe in the future it can be? 🤔&lt;/p&gt;

&lt;p&gt;I hope this project help you to scaffold your next big side project. 😊&lt;/p&gt;

&lt;p&gt;You can see the docs here: &lt;a href="https://github.com/GiancarlosIO/webpack-nexus"&gt;https://github.com/GiancarlosIO/webpack-nexus&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And... that's it. Thank you for reading!!!&lt;/p&gt;

</description>
      <category>webpack</category>
      <category>react</category>
      <category>vscode</category>
      <category>typescript</category>
    </item>
    <item>
      <title>Should I learn ReasonML or Elm? </title>
      <dc:creator>Giancarlos Isasi</dc:creator>
      <pubDate>Sun, 31 Mar 2019 02:26:57 +0000</pubDate>
      <link>https://dev.to/nexuszgt/should-i-learn-reasonml-or-elm-46nk</link>
      <guid>https://dev.to/nexuszgt/should-i-learn-reasonml-or-elm-46nk</guid>
      <description>&lt;p&gt;Folks! I want to learn other languages/technologies to build client-side feature. What should I choose? ReasonML or Elm? &lt;/p&gt;

</description>
      <category>javascript</category>
      <category>elm</category>
      <category>reason</category>
      <category>discuss</category>
    </item>
  </channel>
</rss>
