<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Node Js Archives - Codeplaners</title>
	<atom:link href="https://codeplaners.com/category/node-js/feed/" rel="self" type="application/rss+xml" />
	<link>https://codeplaners.com/category/node-js/</link>
	<description>Code Solution</description>
	<lastBuildDate>Mon, 17 May 2021 23:53:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>

<image>
	<url>https://codeplaners.com/wp-content/uploads/2020/09/cropped-favicon-social-32x32.png</url>
	<title>Node Js Archives - Codeplaners</title>
	<link>https://codeplaners.com/category/node-js/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Create .env File in Node JS</title>
		<link>https://codeplaners.com/how-to-create-env-file-in-node-js/</link>
					<comments>https://codeplaners.com/how-to-create-env-file-in-node-js/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Mon, 17 May 2021 23:53:24 +0000</pubDate>
				<category><![CDATA[Node Js]]></category>
		<category><![CDATA[node js]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=717</guid>

					<description><![CDATA[<p>Hello, Today, i we will show you How to Create .env File in Node JS. This article will give you simple example of How to Create .env File in Node JS. you will learn How to Create .env File in Node JS. So let&#8217;s follow few step to create example of How to Create .env &#8230; <a href="https://codeplaners.com/how-to-create-env-file-in-node-js/" class="more-link">Continue reading<span class="screen-reader-text"> "How to Create .env File in Node JS"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-env-file-in-node-js/">How to Create .env File in Node JS</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hello,</p>
<p>Today, i we will show you How to Create .env File in Node JS. This article will give you simple example of How to Create .env File in Node JS. you will learn How to Create .env File in Node JS. So let&#8217;s follow few step to create example of How to Create .env File in Node JS.</p>
<p>In this easy instance we will build .env file for environment configuration variable like port, app name, database configuration etc. we will use dotenv npm package for setup .env file variable.</p>
<p>Let&#8217;s see simple instance bottom.</p>
<h3>Step 1:- Create Node App</h3>
<pre class="brush: jscript; title: ; notranslate">
mkdir my-request-app
cd my-request-app
</pre>
<pre class="brush: jscript; title: ; notranslate">
npm init
</pre>
<h3>Step 2:- Install dotenv</h3>
<pre class="brush: jscript; title: ; notranslate">
npm install dotenv
</pre>
<h3>Step 3:- Create File: server.js</h3>
<pre class="brush: jscript; title: ; notranslate">
const dotenv = require('dotenv');
  
dotenv.config();
  
console.log(`Your App Name is ${process.env.APP_NAME}`);
console.log(`Your App Environment is ${process.env.APP_ENV}`);
console.log(`Your App Port is ${process.env.APP_PORT}`);
</pre>
<h3>Step 4:- Run App</h3>
<pre class="brush: jscript; title: ; notranslate">
node server.js
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-env-file-in-node-js/">How to Create .env File in Node JS</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-create-env-file-in-node-js/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Bootstrap multiple select with checkboxes example</title>
		<link>https://codeplaners.com/bootstrap-multiple-select-with-checkboxes-example/</link>
					<comments>https://codeplaners.com/bootstrap-multiple-select-with-checkboxes-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 25 Mar 2021 07:53:20 +0000</pubDate>
				<category><![CDATA[Angular]]></category>
		<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Laravel]]></category>
		<category><![CDATA[Node Js]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Reacts]]></category>
		<category><![CDATA[Vue Js]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=540</guid>

					<description><![CDATA[<p>In this article, how to use multiple select dropdown with checkbox that way user can select multiple check boxes using bootstrap-multiselect.js plugin of bootstrap jquery. Bootstrap have a lots of plugin like for datepicker, colorpicker, select with search etc. you can integrate easily with your bootstrap project, even if you are working on code PHP, &#8230; <a href="https://codeplaners.com/bootstrap-multiple-select-with-checkboxes-example/" class="more-link">Continue reading<span class="screen-reader-text"> "Bootstrap multiple select with checkboxes example"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/bootstrap-multiple-select-with-checkboxes-example/">Bootstrap multiple select with checkboxes example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In this article, how to use multiple select dropdown with checkbox that way user can select multiple check boxes using bootstrap-multiselect.js plugin of bootstrap jquery. Bootstrap have a lots of plugin like for datepicker, colorpicker, select with search etc. you can integrate easily with your bootstrap project, even if you are working on code PHP, laravel framework, codeigniter framework, symfony framework or etc other framework of PHP.</p>
<pre class="brush: php; title: ; notranslate">
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
  &lt;title&gt;Bootstrap multiple select with checkboxes example - CodePlaners&lt;/title&gt;
  &lt;!-- Bootstrap CSS --&gt;
  &lt;link rel=&quot;stylesheet&quot; href=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css&quot;&gt;
  &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-multiselect/0.9.13/css/bootstrap-multiselect.css&quot;&gt;
&lt;/head&gt;
&lt;body&gt;


&lt;div class=&quot;container&quot;&gt;
	&lt;strong&gt;Select Language:&lt;/strong&gt;
    &lt;select id=&quot;MultipleCheckboxes&quot; multiple=&quot;multiple&quot;&gt;
        &lt;option value=&quot;php&quot;&gt;PHP&lt;/option&gt;
        &lt;option value=&quot;laravel&quot;&gt;Laravel&lt;/option&gt;
        &lt;option value=&quot;java&quot;&gt;Java&lt;/option&gt;
        &lt;option value=&quot;sql&quot;&gt;SQL&lt;/option&gt;
        &lt;option value=&quot;jquery&quot;&gt;Jquery&lt;/option&gt;
    &lt;/select&gt;
&lt;/div&gt;

    &lt;script src=&quot;https://code.jquery.com/jquery-3.2.1.slim.min.js&quot; &gt;&lt;/script&gt;
    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js&quot; &gt;&lt;/script&gt;
    &lt;script src=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js&quot;&gt;&lt;/script&gt;
  	&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-multiselect/0.9.13/js/bootstrap-multiselect.js&quot;&gt;&lt;/script&gt;
	&lt;script type=&quot;text/javascript&quot;&gt;
		$(function() {
                $('#MultipleCheckboxes').multiselect({
                    enableClickableOptGroups: true,
                    includeSelectAllOption:true,
                    nonSelectedText: 'Select language'
                });
            });
    &lt;/script&gt;


&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/bootstrap-multiple-select-with-checkboxes-example/">Bootstrap multiple select with checkboxes example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/bootstrap-multiple-select-with-checkboxes-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
